mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-05-24 09:52:27 +00:00
24 lines
No EOL
725 B
Text
24 lines
No EOL
725 B
Text
@page "/remove2fa"
|
|
@using LBPUnion.ProjectLighthouse.Localization.StringLists
|
|
@model LBPUnion.ProjectLighthouse.Servers.Website.Pages.TwoFactor.DisableTwoFactorPage
|
|
|
|
@{
|
|
Layout = "Layouts/BaseLayout";
|
|
Model.Title = Model.Translate(TwoFactorStrings.DisableTwoFactor);
|
|
Model.ShowTitleInPage = false;
|
|
}
|
|
|
|
|
|
<div class="ui center segment center aligned">
|
|
<h2>@Model.Translate(TwoFactorStrings.DisableTwoFactor)</h2>
|
|
<p>@Model.Translate(TwoFactorStrings.DisableTwoFactorDescription)</p>
|
|
@await Html.PartialAsync("Partials/TwoFactorPartial", new ViewDataDictionary(ViewData)
|
|
{
|
|
{
|
|
"SubmitUrl", "/remove2fa"
|
|
},
|
|
{
|
|
"Error", Model.Error
|
|
},
|
|
})
|
|
</div> |