passwordChange.blade.php 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. @extends('desktop.layouts.app')
  2. @section('content')
  3. <div id="accountPassword" class="container">
  4. @include('desktop.account.navTabs')
  5. <dl>
  6. <dt>비밀번호 변경</dt>
  7. <dd>개인정보 보호를 위해 비밀번호를 변경 해주세요.</dd>
  8. <dd>이전과 동일한 비밀번호는 사용할 수 없습니다.</dd>
  9. </dl>
  10. <hr/>
  11. <form name="f_account_password" id="fAccountPassword" method="post" action="{{ route('account.password.update') }}" autocomplete="off">
  12. @csrf
  13. <table class="table table-borderless">
  14. <colgroup>
  15. <col width="25%"/>
  16. <col width="*"/>
  17. </colgroup>
  18. <tr>
  19. <th rowspan="4">새 비밀번호</th>
  20. </tr>
  21. <tr>
  22. <td>
  23. <label for="password" class="form-label">새 비밀번호</label>
  24. <input type="password" name="password" id="password" class="form-control" required minlength="{{ config('password_min_length', 0) }}" />
  25. </td>
  26. </tr>
  27. <tr>
  28. <td>
  29. <label for="passwordConfirm" class="form-label">새 비밀번호 확인</label>
  30. <input type="password" name="password_confirmation" id="passwordConfirm" class="form-control" required />
  31. </td>
  32. </tr>
  33. <tr>
  34. <td>
  35. <div class="row g-2">
  36. <div class="col-auto">
  37. <button type="submit" class="btn btn-success">확인</button>
  38. </div>
  39. <div class="col-auto">
  40. <a href="{{ route('account.profile') }}" class="btn btn-default">취소</a>
  41. </div>
  42. </div>
  43. </td>
  44. </tr>
  45. </table>
  46. </form>
  47. <hr/>
  48. </div>
  49. @endsection
  50. @push('styles')
  51. <link rel="stylesheet" href="{{ asset('css/desktop/account/passwords.css') }}"/>
  52. @endpush
  53. @push('scripts')
  54. <script src="{{ asset('/js/account/passwords.js') }}" defer></script>
  55. @endpush