mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
b12c4c5fa0
* Improve and unify page headers * Altcoin test fixes * Update BTCPayServer/Views/Apps/UpdateCrowdfund.cshtml Co-authored-by: Andrew Camilleri <evilkukka@gmail.com> * Update BTCPayServer/Views/Apps/UpdateCrowdfund.cshtml Co-authored-by: Andrew Camilleri <evilkukka@gmail.com> * Fix missing store name in pairing view * Fix CanUsePairing test * Bump header navigation font size * Use partial tag instead of Html.PartialAsync in views As suggested by @nicolasdorier. These are equivalent, see details [here](https://docs.microsoft.com/en-us/aspnet/core/mvc/views/partial?view=aspnetcore-3.1#partial-tag-helper). * Fix docs link As in #2432. * Update BTCPayServer/Views/Wallets/SignWithSeed.cshtml Co-authored-by: britttttk <39231115+britttttk@users.noreply.github.com> * Update BTCPayServer/Views/Wallets/WalletSendVault.cshtml Co-authored-by: britttttk <39231115+britttttk@users.noreply.github.com> * Update BTCPayServer/Views/Wallets/WalletTransactions.cshtml Co-authored-by: britttttk <39231115+britttttk@users.noreply.github.com> Co-authored-by: Andrew Camilleri <evilkukka@gmail.com> Co-authored-by: britttttk <39231115+britttttk@users.noreply.github.com>
43 lines
1.4 KiB
Plaintext
43 lines
1.4 KiB
Plaintext
@model SecondaryLoginViewModel
|
|
@{
|
|
ViewData["Title"] = "Two-factor/U2F authentication";
|
|
}
|
|
|
|
<section>
|
|
<div class="container">
|
|
@if (Model.LoginWith2FaViewModel != null && Model.LoginWithU2FViewModel != null)
|
|
{
|
|
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
|
}
|
|
else if (Model.LoginWith2FaViewModel == null && Model.LoginWithU2FViewModel == null)
|
|
{
|
|
<div class="row">
|
|
<div class="col-lg-12 section-heading">
|
|
<h2 class="bg-danger">Both 2FA and U2F Authentication Methods are not available. Please go to the https endpoint</h2>
|
|
<hr class="danger">
|
|
</div>
|
|
</div>
|
|
}
|
|
|
|
|
|
<div class="row justify-content-center">
|
|
@if (Model.LoginWith2FaViewModel != null)
|
|
{
|
|
<div class="col-sm-12 col-md-6">
|
|
<partial name="Loginwith2fa" model="@Model.LoginWith2FaViewModel"/>
|
|
</div>
|
|
}
|
|
@if (Model.LoginWithU2FViewModel != null)
|
|
{
|
|
<div class="col-sm-12 col-md-6">
|
|
<partial name="LoginWithU2F" model="@Model.LoginWithU2FViewModel"/>
|
|
</div>
|
|
}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
@section Scripts {
|
|
<partial name="_ValidationScriptsPartial" />
|
|
}
|