Files
btcpayserver/BTCPayServer/Views/UIAccount/LoginWithRecoveryCode.cshtml
d11n a962e60de9 More Translations (#6318)
* Store selector

* Footer

* Notifications

* Checkout Appearance

* Users list

* Forms

* Emails

* Pay Button

* Edit Dictionary

* Remove newlines, fix typos

* Forms

* Pull payments and payouts

* Various pages

* Use local docs link

* Fix

* Even more translations

* Fixes #6325

* Account pages

* Notifications

* Placeholders

* Various pages and components

* Add more
2024-10-25 22:48:53 +09:00

20 lines
793 B
Plaintext

@model LoginWithRecoveryCodeViewModel
@{
Layout = "_LayoutSignedOut";
ViewData["Title"] = "Recovery code verification";
}
<p text-translate="true">You have requested to log in with a recovery code. This login will not be remembered until you provide an authenticator app code at login or disable 2FA and log in 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" text-translate="true">Log in</button>
</form>
@section PageFootContent {
<partial name="_ValidationScriptsPartial" />
}