2020-05-24 02:12:11 +01:00
|
|
|
@page
|
|
|
|
|
@model RegisterConfirmationModel
|
|
|
|
|
@{
|
|
|
|
|
ViewData["Title"] = "Register confirmation";
|
|
|
|
|
}
|
|
|
|
|
<h1>@ViewData["Title"]</h1>
|
|
|
|
|
@{
|
2020-12-20 21:34:13 +00:00
|
|
|
if(Model.DisplayConfirmAccountLink)
|
2020-05-24 02:12:11 +01:00
|
|
|
{
|
|
|
|
|
<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:
|
2020-12-20 21:34:13 +00:00
|
|
|
<a href="@Model.EmailConfirmationUrl" id="confirm-link">Click here to confirm your account</a>
|
2020-05-24 02:12:11 +01:00
|
|
|
</p>
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
<p>
|
|
|
|
|
Please check your email to confirm your account.
|
|
|
|
|
</p>
|
|
|
|
|
}
|
|
|
|
|
}
|