mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
3c76dfb584
btn-default has been removed in Bootstrap4: https://github.com/twbs/bootstrap/issues/25029
28 lines
940 B
Plaintext
28 lines
940 B
Plaintext
@model LoginWithRecoveryCodeViewModel
|
|
@{
|
|
ViewData["Title"] = "Recovery code verification";
|
|
}
|
|
|
|
<h2>@ViewData["Title"]</h2>
|
|
<hr />
|
|
<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>
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
<form method="post">
|
|
<div asp-validation-summary="All" class="text-danger"></div>
|
|
<div class="form-group">
|
|
<label asp-for="RecoveryCode"></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>
|
|
</div>
|
|
</div>
|
|
|
|
@section Scripts {
|
|
@await Html.PartialAsync("_ValidationScriptsPartial")
|
|
} |