mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 11:04:25 +00:00
23 lines
653 B
Plaintext
23 lines
653 B
Plaintext
@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 href="@Model.EmailConfirmationUrl" id="confirm-link">Click here to confirm your account</a>
|
|
</p>
|
|
}
|
|
else
|
|
{
|
|
<p>
|
|
Please check your email to confirm your account.
|
|
</p>
|
|
}
|
|
} |