| 1234567891011121314151617181920212223242526272829 |
- @page
- @model RegisterConfirmationModel
- @{
- ViewData["Title"] = "Register confirmation";
- }
- @*
- <h1>@ViewData["Title"]</h1>
- @{
- if (@Model.DisplayConfirmAccountLink)
- {
- <p>
- 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.
- Normally this would be emailed: <a id="confirm-link" href="@Model.EmailConfirmationUrl">Click here to confirm your account</a>
- </p>
- }
- else
- {
- <p>
- Please check your email to confirm your account.
- </p>
- }
- }
- *@
- <script>
- alert("이메일 확인 메일을 전송했습니다. 인증 확인 후 접속이 가능합니다.");
- window.location.replace("/Identity/Account/Login");
- </script>
|