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

14 lines
No EOL
534 B
Text

@page "/login/sendVerificationEmail"
@model LBPUnion.ProjectLighthouse.Servers.Website.Pages.SendVerificationEmailPage
@{
Layout = "Layouts/BaseLayout";
Model.Title = "Verify Email Address";
}
<p>An email address on your account has been set, but hasn't been verified yet.</p>
<p>To verify it, check the email sent to <a href="mailto:@Model.User?.EmailAddress">@Model.User?.EmailAddress</a> and click the link in the email.</p>
<a href="/login/sendVerificationEmail">
<div class="ui blue button">Resend email</div>
</a>