mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-22 23:44:26 +01:00
23 lines
757 B
Plaintext
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" />
|
|
}
|