leave.blade.php 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. @extends('desktop.layouts.app')
  2. @section('content')
  3. <div id="accountLeave" class="container">
  4. @include('desktop.account.navTabs')
  5. <dl>
  6. <dt>회원탈퇴</dt>
  7. <dd>탈퇴 유의사항</dd>
  8. <dd>탈퇴한 계정은 본인과 타인 모두 재사용 및 복구가 불가하오니 신중하게 선택하시기 바랍니다.</dd>
  9. <dd>탈퇴 후 회원정보 및 개인형 서비스 이용기록은 모두 삭제됩니다.</dd>
  10. <dd>각종 게시판의 게시글, 댓글 등의 데이터는 삭제되지 않습니다. 반드시 탈퇴 전 직접 삭제하셔야 합니다.</dd>
  11. <dd>회원 탈퇴 후 모든 상품 주문 정보는 5년간 분리 보관됩니다.</dd>
  12. </dl>
  13. <hr/>
  14. <form name="f_account_leave" id="fAccountLeave" method="post" action="{{ route('account.leave.update') }}" autocomplete="off">
  15. @csrf
  16. <table class="table table-borderless">
  17. <colgroup>
  18. <col width="25%"/>
  19. <col width="*"/>
  20. </colgroup>
  21. <tr>
  22. <th rowspan="5">계정</th>
  23. <td>
  24. <label for="email">이메일</label>
  25. <input type="text" name="email" id="email" class="form-control-plaintext" value="{{ $user->email }}" readonly />
  26. </td>
  27. </tr>
  28. <tr>
  29. <td>
  30. <label for="password" class="form-label">비밀번호</label>
  31. <input type="password" name="password" id="password" class="form-control" required minlength="{{ config('password_min_length', 0) }}" />
  32. </td>
  33. </tr>
  34. <tr>
  35. <td>
  36. <label for="passwordConfirm" class="form-label">비밀번호 확인</label>
  37. <input type="password" name="password_confirmation" id="passwordConfirm" class="form-control" required />
  38. </td>
  39. </tr>
  40. <tr>
  41. <td>
  42. <label for="withdrawal" class="form-label">탈퇴 동의</label>
  43. <div class="form-check">
  44. <input type="checkbox" name="withdrawal" id="withdrawal" class="form-check-input" value="1" />
  45. <label for="withdrawal" class="form-check-label">안내사항을 모두 확인하였으며, 이에 동의합니다.</label>
  46. </div>
  47. </td>
  48. </tr>
  49. <tr>
  50. <td>
  51. <div class="row g-2">
  52. <div class="col-auto">
  53. <button type="submit" class="btn btn-success">확인</button>
  54. </div>
  55. <div class="col-auto">
  56. <a href="{{ route('account.profile') }}" class="btn btn-default">취소</a>
  57. </div>
  58. </div>
  59. </td>
  60. </tr>
  61. </table>
  62. </form>
  63. <hr/>
  64. </div>
  65. @endsection
  66. @push('styles')
  67. <link rel="stylesheet" href="{{ asset('css/desktop/account/leave.css') }}"/>
  68. @endpush
  69. @push('scripts')
  70. <script src="{{ asset('js/account/leave.js') }}" defer></script>
  71. @endpush