@page "/verifyEmail" @model LBPUnion.ProjectLighthouse.Servers.Website.Pages.CompleteEmailVerificationPage @{ Layout = "Layouts/BaseLayout"; if (Model.Error == null) { Model.Title = "Email Address Verified"; } else { Model.Title = "Couldn't verify email address"; } } @if (Model.Error != null) {
Reason: @Model.Error
Please try again. If the error persists, please contact the instance administrator.
} else {Your email has been successfully verified. You may now close this tab.
}