mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 06:21:44 +01:00
2FA: Fix login partial name
Fixes a typo in the filename, which leads to an exception on login when 2FA is enabled.
This commit is contained in:
parent
6185b93b59
commit
673b6d6733
1 changed files with 1 additions and 2 deletions
|
@ -19,12 +19,11 @@
|
|||
</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"/>
|
||||
<partial name="LoginWith2fa" model="@Model.LoginWith2FaViewModel"/>
|
||||
</div>
|
||||
}
|
||||
@if (Model.LoginWithFido2ViewModel != null)
|
||||
|
|
Loading…
Add table
Reference in a new issue