ForgotPassword.cshtml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. @page
  2. @model ForgotPasswordModel
  3. @{
  4. ViewData["Title"] = "비밀번호를 잊으셨나요?";
  5. }
  6. <div id="forgotPasswordForm" class="row row-cols-1 justify-content-center align-items-center min-vh-100">
  7. <div class="col col-12 col-sm-7 col-md-5 col-lg-5 col-xl-3">
  8. <section class="border rounded p-3">
  9. <form method="post" accept-charset="utf-8" autocomplete="off">
  10. <small class="d-block pb-2">@ViewData["Title"]</small>
  11. <h5>재설정할 이메일을 입력하세요.</h5>
  12. <hr />
  13. <div asp-validation-summary="ModelOnly" class="text-danger" role="alert"></div>
  14. <div class="form-floating mb-3">
  15. <input asp-for="Input.Email" class="form-control" autocomplete="username" aria-required="true" placeholder="name@example.com" />
  16. <label asp-for="Input.Email" class="form-label"></label>
  17. <span asp-validation-for="Input.Email" class="text-danger"></span>
  18. </div>
  19. <button type="submit" class="w-100 btn btn-primary">비밀번호 재설정</button>
  20. <p class="pt-3 text-center">
  21. <a asp-page="./Login">< 취소하기</a>
  22. </p>
  23. </form>
  24. </section>
  25. </div>
  26. <div class="col">
  27. <div class="text-center ps-3 pe-3">
  28. <hr />
  29. <small>ⓒ PLAYR. All Rights Reserved</small>
  30. </div>
  31. </div>
  32. </div>
  33. @section Scripts {
  34. <partial name="_ValidationScriptsPartial" />
  35. }
  36. @section Styles {
  37. <link rel="stylesheet" href="~/css/account.css" asp-append-version="true" />
  38. }