kanidm/server/core/templates/login_totp.html
2025-01-07 00:05:07 +00:00

46 lines
1 KiB
HTML

(% extends "login_base.html" %)
(% block logincontainer %)
<label for="totp" class="form-label">Two-factor authentication code</label>
(% match errors %)
(% when LoginTotpError::Syntax %)
<div class="alert alert-danger" role="alert">
<p>Invalid Value</p>
<p>Code must only consist of numbers, please try again.</p>
</div>
(% when LoginTotpError::None %)
(% endmatch %)
<form id="login" action="/ui/login/totp" method="post">
<div class="input-group mb-3">
<!-- BEGIN: allows a password manager to autocomplete these fields in the BG. -->
<input
class="d-none"
id="password"
name="password"
type="password"
autocomplete="current-password"
value=""
/>
<!-- END -->
<input
autofocus=true
class="autofocus form-control"
id="totp"
name="totp"
type="text"
inputmode="numeric"
autocomplete="one-time-code"
value="(( totp ))"
required=true
/>
</div>
<div class="input-group mb-3 justify-content-md-center">
<button
type="submit"
class="btn btn-primary"
>Submit</button>
</div>
</form>
(% endblock %)