RegisterConfirmation.cshtml 766 B

1234567891011121314151617181920212223242526272829
  1. @page
  2. @model RegisterConfirmationModel
  3. @{
  4. ViewData["Title"] = "Register confirmation";
  5. }
  6. @*
  7. <h1>@ViewData["Title"]</h1>
  8. @{
  9. if (@Model.DisplayConfirmAccountLink)
  10. {
  11. <p>
  12. This app does not currently have a real email sender registered, see <a href="https://aka.ms/aspaccountconf">these docs</a> for how to configure a real email sender.
  13. Normally this would be emailed: <a id="confirm-link" href="@Model.EmailConfirmationUrl">Click here to confirm your account</a>
  14. </p>
  15. }
  16. else
  17. {
  18. <p>
  19. Please check your email to confirm your account.
  20. </p>
  21. }
  22. }
  23. *@
  24. <script>
  25. alert("이메일 확인 메일을 전송했습니다. 인증 확인 후 접속이 가능합니다.");
  26. window.location.replace("/Identity/Account/Login");
  27. </script>