ProjectLighthouse/ProjectLighthouse.Servers.Website/Pages/SendVerificationEmailPage.cshtml
Josh 3ad211e5c8
Implement POST request rate limiting (#490)
* Initial work for rate limiting

* Refactor GameServerStartup and change default rate limit config

* Adjust config naming and add Enabled option to global and override rate limits

* Fix LBP3 republish bug

* Fix bugs in rate limiting and allow for multiple matched overrides

* Add this qualifier for private variable

* Changes from self review
2022-09-24 17:18:28 -05:00

22 lines
No EOL
698 B
Text

@page "/login/sendVerificationEmail"
@model LBPUnion.ProjectLighthouse.Servers.Website.Pages.SendVerificationEmailPage
@{
Layout = "Layouts/BaseLayout";
Model.Title = "Verify Email Address";
}
@if (Model.Success)
{
<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>
}
else
{
<p>Failed to send email, please try again later.</p>
<p>If this issue persists please contact an Administrator</p>
}
<a href="/login/sendVerificationEmail">
<div class="ui blue button">Resend email</div>
</a>