2021-07-20 22:51:43 +00:00
|
|
|
@page
|
|
|
|
@model RegisterConfirmationModel
|
|
|
|
@{
|
|
|
|
ViewData["Title"] = "Register confirmation";
|
|
|
|
}
|
|
|
|
|
|
|
|
<h1>@ViewData["Title"]</h1>
|
|
|
|
@{
|
|
|
|
if (@Model.DisplayConfirmAccountLink)
|
|
|
|
{
|
2021-07-21 06:58:49 +00:00
|
|
|
<p>
|
2021-08-05 06:22:19 +00:00
|
|
|
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>
|
2021-07-21 06:58:49 +00:00
|
|
|
</p>
|
2021-07-20 22:51:43 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-07-21 06:58:49 +00:00
|
|
|
<p>
|
|
|
|
Please check your email to confirm your account.
|
|
|
|
</p>
|
2021-07-20 22:51:43 +00:00
|
|
|
}
|
|
|
|
}
|
2021-08-05 06:22:19 +00:00
|
|
|
@* TODO: implement account confirmation. *@
|