mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-07-29 16:38:37 +00:00
14 lines
No EOL
534 B
Text
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> |