kanidm/server/core/templates/login_totp.html
George Wu d2c329f330
Change to text input and use numeric mode for TOTP prompts. ()
* Change to text input and use inputmode numeric for TOTP prompts.

* Fix some typos.
2024-10-27 23:57:28 +00:00

33 lines
776 B
HTML

(% extends "login_base.html" %)
(% block logincontainer %)
<label for="totp" class="form-label">TOTP</label>
(% match errors %)
(% when LoginTotpError::Syntax %)
<span class="error">Invalid Value</span>
<span class="error">TOTP must only consist of numbers</span>
(% when LoginTotpError::None %)
(% endmatch %)
<form id="login" action="/ui/login/totp" method="post">
<div class="input-group mb-3">
<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-dark"
>Submit</button>
</div>
</form>
(% endblock %)