member-signup-agree.blade.php 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. @extends('views.layouts.master')
  2. <link rel="stylesheet" href="{{ csset('/themes/pro/modunawa/resources/css/user-auth.css') }}">
  3. @section('content')
  4. <!--=====================================
  5. USER FORM PART START
  6. =======================================-->
  7. <section class="user-form-part signup_agree">
  8. <div class="container">
  9. <div class="row justify-content-center">
  10. <div class="col-12 col-sm-10 col-md-12 col-lg-12 col-xl-6">
  11. <!--
  12. <div class="user-form-logo">
  13. <a href="index.html"><img src="images/logo.png" alt="logo"></a>
  14. </div>
  15. -->
  16. <div class="user-form-card agree_form">
  17. <div class="user-form-title">
  18. <h2>서비스 이용 약관 동의</h2>
  19. </div>
  20. <div class="form-check all_agree">
  21. <input class="form-check-input" type="checkbox" value="" id="check">
  22. <label class="form-check-label" for="check">이용 약관에 모두 동의합니다.</label>
  23. </div>
  24. <div class="form-check">
  25. <input class="form-check-input" type="checkbox" value="" id="check">
  26. <label class="form-check-label" for="check"><span class="txt_caution">[필수]</span> 만 18세 이상 입니다.</label>
  27. </div>
  28. <div class="form-check">
  29. <input class="form-check-input" type="checkbox" value="" id="check">
  30. <label class="form-check-label" for="check"><span class="txt_caution">[필수]</span> 당근토큰 웹 서비스 이용약관</label>
  31. </div>
  32. <div class="form-check">
  33. <input class="form-check-input" type="checkbox" value="" id="check">
  34. <label class="form-check-label" for="check"><span class="txt_caution">[필수]</span> 전자금융거래 이용약관</label>
  35. </div>
  36. <div class="form-check">
  37. <input class="form-check-input" type="checkbox" value="" id="check">
  38. <label class="form-check-label" for="check"><span class="txt_caution">[필수]</span> 개인정보 수집 및 이용 동의</label>
  39. </div>
  40. <div class="form-check">
  41. <input class="form-check-input" type="checkbox" value="" id="check">
  42. <label class="form-check-label" for="check"><span class="txt_caution">[필수]</span> 마케팅 수신 동의</label>
  43. </div>
  44. <div class="text-center mt-5">
  45. <button class="btn btn_prime btn_round" onclick="location.href='#'">가입하기</button>
  46. </div>
  47. </div>
  48. </div>
  49. </div>
  50. </div>
  51. </section>
  52. <!--=====================================
  53. USER FORM PART END
  54. =======================================-->
  55. @endsection