12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- @extends('views.layouts.master')
- <link rel="stylesheet" href="{{ csset('/themes/pro/modunawa/resources/css/user-auth.css') }}">
- @section('content')
- <!--=====================================
- USER FORM PART START
- =======================================-->
- <section class="user-form-part signup_agree">
- <div class="container">
- <div class="row justify-content-center">
- <div class="col-12 col-sm-10 col-md-12 col-lg-12 col-xl-6">
- <!--
- <div class="user-form-logo">
- <a href="index.html"><img src="images/logo.png" alt="logo"></a>
- </div>
- -->
- <div class="user-form-card agree_form">
- <div class="user-form-title">
- <h2>서비스 이용 약관 동의</h2>
- </div>
- <div class="form-check all_agree">
- <input class="form-check-input" type="checkbox" value="" id="check">
- <label class="form-check-label" for="check">이용 약관에 모두 동의합니다.</label>
- </div>
- <div class="form-check">
- <input class="form-check-input" type="checkbox" value="" id="check">
- <label class="form-check-label" for="check"><span class="txt_caution">[필수]</span> 만 18세 이상 입니다.</label>
- </div>
- <div class="form-check">
- <input class="form-check-input" type="checkbox" value="" id="check">
- <label class="form-check-label" for="check"><span class="txt_caution">[필수]</span> 당근토큰 웹 서비스 이용약관</label>
- </div>
- <div class="form-check">
- <input class="form-check-input" type="checkbox" value="" id="check">
- <label class="form-check-label" for="check"><span class="txt_caution">[필수]</span> 전자금융거래 이용약관</label>
- </div>
- <div class="form-check">
- <input class="form-check-input" type="checkbox" value="" id="check">
- <label class="form-check-label" for="check"><span class="txt_caution">[필수]</span> 개인정보 수집 및 이용 동의</label>
- </div>
- <div class="form-check">
- <input class="form-check-input" type="checkbox" value="" id="check">
- <label class="form-check-label" for="check"><span class="txt_caution">[필수]</span> 마케팅 수신 동의</label>
- </div>
- <div class="text-center mt-5">
- <button class="btn btn_prime btn_round" onclick="location.href='#'">가입하기</button>
- </div>
- </div>
- </div>
- </div>
- </div>
- </section>
- <!--=====================================
- USER FORM PART END
- =======================================-->
- @endsection
|