| 12345678910111213141516171819 |
- @page
- @model ResetPasswordConfirmationModel
- @{
- ViewData["Title"] = "Reset password confirmation";
- }
- @*
- <h1>@ViewData["Title"]</h1>
- <p>
- Your password has been reset. Please <a asp-page="./Login">click here to log in</a>.
- </p>
- *@
- <script>
- setTimeout(() => {
- alert("비밀번호가 변경되었습니다. 다시 로그인 해주세요.");
- window.location.replace("/Identity/Account/Login");
- }, 0);
- </script>
|