@page "/passwordResetRequest" @using LBPUnion.ProjectLighthouse.Localization.StringLists @model LBPUnion.ProjectLighthouse.Servers.Website.Pages.PasswordResetRequestForm @{ Layout = "Layouts/BaseLayout"; Model.Title = "Password Reset"; } @if (!string.IsNullOrWhiteSpace(Model.Error)) {
@Model.Translate(GeneralStrings.Error)

@Model.Error

} @if (!string.IsNullOrWhiteSpace(Model.Status)) {
@Model.Translate(GeneralStrings.Success)

@Model.Status

}
@Html.AntiForgeryToken()