mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 14:34:23 +01:00
* 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
20 lines
793 B
Plaintext
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" />
|
|
}
|