source: PostgreSqlDotnetCore/Areas/Identity/Pages/Account/LoginWithRecoveryCode.cshtml@ 2639fab

main
Last change on this file since 2639fab was 2aea0fd, checked in by ElenaMoskova <elena.moskova99@…>, 2 months ago

init commit Elena

  • Property mode set to 100644
File size: 1.0 KB
Line 
1@page
2@model LoginWithRecoveryCodeModel
3@{
4 ViewData["Title"] = "Recovery code verification";
5}
6
7<h1>@ViewData["Title"]</h1>
8<hr />
9<p>
10 You have requested to log in with a recovery code. This login will not be remembered until you provide
11 an authenticator app code at log in or disable 2FA and log in again.
12</p>
13<div class="row">
14 <div class="col-md-4">
15 <form method="post">
16 <div asp-validation-summary="ModelOnly" class="text-danger" role="alert"></div>
17 <div class="form-floating mb-3">
18 <input asp-for="Input.RecoveryCode" class="form-control" autocomplete="off" placeholder="RecoveryCode" />
19 <label asp-for="Input.RecoveryCode" class="form-label"></label>
20 <span asp-validation-for="Input.RecoveryCode" class="text-danger"></span>
21 </div>
22 <button type="submit" class="w-100 btn btn-lg btn-primary">Log in</button>
23 </form>
24 </div>
25</div>
26
27@section Scripts {
28 <partial name="_ValidationScriptsPartial" />
29}
Note: See TracBrowser for help on using the repository browser.