mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-05-22 09:12:26 +00:00
* 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
22 lines
No EOL
698 B
Text
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> |