ResetPasswordConfirmation.cshtml 442 B

12345678910111213141516171819
  1. @page
  2. @model ResetPasswordConfirmationModel
  3. @{
  4. ViewData["Title"] = "Reset password confirmation";
  5. }
  6. @*
  7. <h1>@ViewData["Title"]</h1>
  8. <p>
  9. Your password has been reset. Please <a asp-page="./Login">click here to log in</a>.
  10. </p>
  11. *@
  12. <script>
  13. setTimeout(() => {
  14. alert("비밀번호가 변경되었습니다. 다시 로그인 해주세요.");
  15. window.location.replace("/Identity/Account/Login");
  16. }, 0);
  17. </script>