member-signup.blade.php-- 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  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 divide">
  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-12">
  11. <div class="user-form-card">
  12. <div class="user-form-title">
  13. <h2>회원가입</h2>
  14. <p>회원가입을 위해 아래 폼을 작성해 주세요.</p>
  15. </div>
  16. <form action="{{ route('member-signup.store') }}" method="POST">
  17. @csrf
  18. <input type="hidden" name="mobile_no" value="{{ session('smsCert.mobile_no') }}">
  19. <div class="user-form-group">
  20. <div class="user-form form-prevent-multiple-submits">
  21. <h6>기본정보</h6>
  22. <div class="form-group re">
  23. <label>아이디</label>
  24. <input type="text" class="form-control" name="">
  25. @error('mobile_no')
  26. <span class="text-danger"><i class="icon-cancel-circle2 mr-2"></i>{{ $message }}</span>
  27. @enderror
  28. </div>
  29. <div class="form-group re">
  30. <label>비밀번호</label>
  31. <input type="password" name="password" class="form-control" placeholder="{{ $policyDesc }}">
  32. </div>
  33. <div class="form-group re">
  34. <label>비밀번호 확인</label>
  35. <input type="password" name="password_confirmation" class="form-control" placeholder="비밀번호 한번 더 입력해 주세요.">
  36. @error('password')
  37. <span class="text-danger"><i class="icon-cancel-circle2 mr-2"></i>{{ $message }}</span>
  38. @enderror
  39. </div>
  40. <div class="form-group re">
  41. <label>이름</label>
  42. <input type="text" class="form-control" name="first_name">
  43. @error('mobile_no')
  44. <span class="text-danger"><i class="icon-cancel-circle2 mr-2"></i>{{ $message }}</span>
  45. @enderror </div>
  46. <div class="form-group re">
  47. <label>이메일</label>
  48. <ul>
  49. <li>
  50. <input type="email" name="email" class="form-control">
  51. <select>
  52. <option>직접입력</option>
  53. <option>naver.com</option>
  54. </select>
  55. </li>
  56. </ul>
  57. <em><input type="checkbox"> 정보/이벤트 수신에 동의합니다.</em>
  58. @error('email')
  59. <span class="text-danger"><i class="icon-cancel-circle2 mr-2"></i>123{{ $message }}</span>
  60. @enderror
  61. </div>
  62. <div class="form-group re">
  63. <label>휴대폰번호</label>
  64. <input type="tel" name="" class="form-control" placeholder="-없이 입력하세요.">
  65. <em><input type="checkbox"> 정보/이벤트 수신에 동의합니다.</em>
  66. @error('mobile_no')
  67. <span class="text-danger"><i class="icon-cancel-circle2 mr-2"></i>{{ $message }}</span>
  68. @enderror
  69. </div>
  70. <div class="form-group re">
  71. <label>전화번호</label>
  72. <input type="tel" name="" class="form-control" placeholder="-없이 입력하세요.">
  73. <em><input type="checkbox"> 정보/이벤트 수신에 동의합니다.</em>
  74. @error('mobile_no')
  75. <span class="text-danger"><i class="icon-cancel-circle2 mr-2"></i>{{ $message }}</span>
  76. @enderror
  77. </div>
  78. <div class="form-group re">
  79. <label>주소</label>
  80. <ul>
  81. <li><input type="text" name="" class="form-control"><button type="button">우편번호검색</button></li>
  82. <li><input type="text" name="" class="form-control"></li>
  83. <li><input type="text" name="" class="form-control"></li>
  84. </ul>
  85. @error('mobile_no')
  86. <span class="text-danger"><i class="icon-cancel-circle2 mr-2"></i>{{ $message }}</span>
  87. @enderror
  88. </div>
  89. </div>
  90. <div class="user-form-divider">
  91. </div>
  92. <div class="user-form form-prevent-multiple-submits">
  93. <h6>사업자 정보</h6>
  94. <div class="form-group re">
  95. <label>상호</label>
  96. <input type="text" class="form-control" name="">
  97. @error('mobile_no')
  98. <span class="text-danger"><i class="icon-cancel-circle2 mr-2"></i>{{ $message }}</span>
  99. @enderror
  100. </div>
  101. <div class="form-group re">
  102. <label>사업자번호</label>
  103. <input type="text" name="" class="form-control" placeholder="-없이 입력하세요.">
  104. @error('email')
  105. <span class="text-danger"><i class="icon-cancel-circle2 mr-2"></i>{{ $message }}</span>
  106. @enderror
  107. </div>
  108. <div class="form-group re">
  109. <label>대표자명</label>
  110. <input type="text" class="form-control" name="">
  111. @error('mobile_no')
  112. <span class="text-danger"><i class="icon-cancel-circle2 mr-2"></i>{{ $message }}</span>
  113. @enderror
  114. </div>
  115. <div class="form-group re">
  116. <label>업태</label>
  117. <input type="text" class="form-control" name="">
  118. @error('mobile_no')
  119. <span class="text-danger"><i class="icon-cancel-circle2 mr-2"></i>{{ $message }}</span>
  120. @enderror
  121. </div>
  122. <div class="form-group re">
  123. <label>종목</label>
  124. <input type="text" class="form-control" name="">
  125. @error('mobile_no')
  126. <span class="text-danger"><i class="icon-cancel-circle2 mr-2"></i>{{ $message }}</span>
  127. @enderror
  128. </div>
  129. <div class="form-group re">
  130. <label>주소</label>
  131. <ul>
  132. <li><input type="text" name="" class="form-control"><button type="button">우편번호검색</button></li>
  133. <li><input type="text" name="" class="form-control"></li>
  134. <li><input type="text" name="" class="form-control"></li>
  135. </ul>
  136. @error('mobile_no')
  137. <span class="text-danger"><i class="icon-cancel-circle2 mr-2"></i>{{ $message }}</span>
  138. @enderror
  139. </div>
  140. <div class="form-group re">
  141. <label>사업자등록증 사진 첨부</label>
  142. <input type="file" class="form-control" name="">
  143. @error('mobile_no')
  144. <span class="text-danger"><i class="icon-cancel-circle2 mr-2"></i>{{ $message }}</span>
  145. @enderror
  146. </div>
  147. <div class="form-group re">
  148. <label>사용중인 카드 단말기(VAN)</label>
  149. <select>
  150. <option>한국정보통신(KICC)</option>
  151. <option>나이스정보통신</option>
  152. <option>KSNET</option>
  153. <option>스마트로</option>
  154. <option>KIS정보통신</option>
  155. <option>퍼스트데이타</option>
  156. <option>KOVAN</option>
  157. <option>JT NET</option>
  158. <option>다우데이타</option>
  159. <option>한국사이버결제(KCP)</option>
  160. <option>KOCES</option>
  161. <option>SPC</option>
  162. <option>금융결제원</option>
  163. </select>
  164. @error('mobile_no')
  165. <span class="text-danger"><i class="icon-cancel-circle2 mr-2"></i>{{ $message }}</span>
  166. @enderror
  167. </div>
  168. <div class="form-group re">
  169. <label>VAN 아이디</label>
  170. <input type="text" class="form-control" name="">
  171. @error('mobile_no')
  172. <span class="text-danger"><i class="icon-cancel-circle2 mr-2"></i>{{ $message }}</span>
  173. @enderror
  174. </div>
  175. <div class="form-group re">
  176. <label>VAN 비밀번호</label>
  177. <input type="text" class="form-control" name="">
  178. @error('mobile_no')
  179. <span class="text-danger"><i class="icon-cancel-circle2 mr-2"></i>{{ $message }}</span>
  180. @enderror
  181. </div>
  182. </div>
  183. </div>
  184. </form>
  185. </div>
  186. <div class="form-check mb-3">
  187. <input class="form-check-input" type="checkbox" id="verifiy-ck">
  188. <label class="form-check-label" for="verifiy-ck">약관에 동의합니다. <a href="{{ route('policy.index') }}" target="_blank">약관보기</a> </label>
  189. </div>
  190. <div class="form-button">
  191. <button type="submit" class="button-prevent-multiple-submits"> <i class="spinner fa fa-spinner fa-spin"></i> 확인 </button>
  192. </div>
  193. <div class="user-form-remind">
  194. <p>이미 회원이시면 로그인해 주세요.<a href="{{ route('member-login') }}">로그인</a></p>
  195. </div>
  196. <!--
  197. <div class="user-form-footer">
  198. <p>Greeny | &COPY; Copyright by <a href="#">Mironcoder</a></p>
  199. </div>
  200. -->
  201. </div>
  202. </div>
  203. </div>
  204. </section>
  205. <!--=====================================
  206. USER FORM PART END
  207. =======================================-->
  208. @endsection
  209. @push('js')
  210. <script>
  211. $('form').on('submit', function(event) {
  212. event.preventDefault();
  213. if ($('#verifiy-ck').is(':checked')) {
  214. this.submit()
  215. return
  216. }
  217. iziToast.info({ title: 'Info', message: "@lang('이용약관에 동의하셔야 합니다')" });
  218. return false
  219. });
  220. </script>
  221. @endpush