ProjectLighthouse/ProjectLighthouse.Servers.Website/Pages/CompleteEmailVerificationPage.cshtml
2022-05-14 23:37:55 -04:00

30 lines
No EOL
691 B
Text

@page "/verifyEmail"
@model LBPUnion.ProjectLighthouse.Servers.Website.Pages.CompleteEmailVerificationPage
@{
Layout = "Layouts/BaseLayout";
if (Model.Error == null)
{
Model.Title = "Email Address Verified";
}
else
{
Model.Title = "Couldn't verify email address";
}
}
@if (Model.Error != null)
{
<p>
<b>Reason:</b> @Model.Error
</p>
<p>Please try again. If the error persists, please contact the instance administrator.</p>
<a href="/login/sendVerificationEmail">
<div class="ui blue button">Resend email</div>
</a>
}
else
{
<p>Your email has been successfully verified. You may now close this tab.</p>
}