Files
btcpayserver/BTCPayServer/Views/UIAccount/LoginWithRecoveryCode.cshtml
2022-03-03 13:43:22 +01:00

23 lines
757 B
Plaintext

@model LoginWithRecoveryCodeViewModel
@{
Layout = "_LayoutSignedOut";
ViewData["Title"] = "Recovery code verification";
}
<p>
You have requested to login with a recovery code. This login will not be remembered until you provide
an authenticator app code at login or disable 2FA and login again.
</p>
<form method="post">
<div class="form-group">
<label asp-for="RecoveryCode" class="form-label"></label>
<input asp-for="RecoveryCode" class="form-control" autocomplete="off" />
<span asp-validation-for="RecoveryCode" class="text-danger"></span>
</div>
<button type="submit" class="btn btn-primary">Log in</button>
</form>
@section PageFootContent {
<partial name="_ValidationScriptsPartial" />
}