Move servers to LBPU.PL.Servers

This commit is contained in:
jvyden 2022-05-14 23:37:55 -04:00
commit b2ec7eae57
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278
116 changed files with 173 additions and 162 deletions

View file

@ -0,0 +1,14 @@
@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>