mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-02-23 07:04:26 +01:00
@@ -14,7 +14,7 @@ namespace BTCPayServer.Models.AccountViewModels
|
||||
public string Password { get; set; }
|
||||
public string LoginCode { get; set; }
|
||||
|
||||
[Display(Name = "Remember me?")]
|
||||
[Display(Name = "Remember me")]
|
||||
public bool RememberMe { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,11 +20,16 @@
|
||||
<label asp-for="Password" class="form-label"></label>
|
||||
<a asp-action="ForgotPassword" tabindex="5">Forgot password?</a>
|
||||
</div>
|
||||
<div class="input-group d-flex">
|
||||
<div class="input-group d-flex">
|
||||
<input asp-for="Password" class="form-control" required tabindex="2"/>
|
||||
</div>
|
||||
<span asp-validation-for="Password" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-check">
|
||||
<input asp-for="RememberMe" type="checkbox" class="form-check-input" />
|
||||
<label asp-for="RememberMe" class="form-check-label"></label>
|
||||
<span asp-validation-for="RememberMe" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group mt-4">
|
||||
<div class="btn-group w-100">
|
||||
<button type="submit" class="btn btn-primary btn-lg w-100" id="LoginButton" tabindex="3"><span class="ps-3">Sign in</span></button>
|
||||
|
||||
Reference in New Issue
Block a user