mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 22:14:26 +01:00
* Update layout structure and header * Implement store selector * Simplify homepage * Update layout * Use dropdown for store selector * Hide global nav in store context * Horizontal section nav * Remove outer section and container from content views * Update nav * Set store context for invoice and payment request lists * Test fixes * Persist menu collapse state on client-side * MainNav as view component * Update app routes to incorporate store context * Test fixes * Display ticker for altcoins build only * Plugins nav * Incorporate category for active page as well * Update invoice icon * Add apps list to nav * Add store context to app type controllers * Incorporate id for active page as well * Test fixes * AppsController cleanup * Nav: Display only apps for the current store * Remove leftover from merge * Nav styles optimization * Left-align content container * Increase sidebar padding on desktop * Use min-width for store selector menu * Store settings nav update * Update app and payment request routes * Test fixes * Refactor MainNav component to use StoresController * Set store context for invoice actions * Cleanups * Remove CurrentStore checks The response will be "Access denied" in case the CookieAuthorizationHandler cannot resolve the store. * Remove unnecessary store context setters * Test fix
31 lines
1.0 KiB
Plaintext
31 lines
1.0 KiB
Plaintext
@model LoginWithRecoveryCodeViewModel
|
|
@{
|
|
ViewData["Title"] = "Recovery code verification";
|
|
}
|
|
|
|
<div class="row">
|
|
<div class="col-lg-12 section-heading">
|
|
<h2>@ViewData["Title"]</h2>
|
|
<hr class="primary">
|
|
<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>
|
|
</div>
|
|
<div class="row">
|
|
<form method="post" class="col-12">
|
|
<div asp-validation-summary="All" class="text-danger"></div>
|
|
<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>
|
|
</div>
|
|
|
|
@section PageFootContent {
|
|
<partial name="_ValidationScriptsPartial" />
|
|
}
|