| 12345678910111213141516171819 |
- @page
- @model ForgotPasswordConfirmation
- @{
- ViewData["Title"] = "Forgot password confirmation";
- }
- @*
- <h1>@ViewData["Title"]</h1>
- <p>
- Please check your email to reset your password.
- </p>
- *@
- <script>
- setTimeout(() => {
- alert("받은 메일함을 확인하고 비밀번호를 변경하세요.");
- window.location.replace("/Identity/Account/Login");
- }, 0);
- </script>
|