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