mirror of
https://github.com/kanidm/kanidm.git
synced 2025-04-17 07:45:39 +02:00
* Add support for prefers-color-scheme using Bootstrap classes. * Move stylesheet changes to separate javascript file. * fix(html): don't specify the integrity hash in the tag for style.js * fix(log): debug-log integrity hashes for troubleshooting * fix(css): move to using bootstrap standard variables for colours and theming * fix(js): rewrite to simplify and use standard bootstrap functionality * fix(makefile): codespell thingie was complaining * run prettier on css/js. --------- Co-authored-by: James Hodgkinson <james@terminaloutcomes.com>
25 lines
543 B
HTML
25 lines
543 B
HTML
(% extends "login_base.html" %)
|
|
|
|
(% block logincontainer %)
|
|
<label for="Backup Code" class="form-label">Backup Code</label>
|
|
<form id="login" action="/ui/login/backup_code" method="post">
|
|
<div class="input-group mb-3">
|
|
<input
|
|
autofocus=true
|
|
class="autofocus form-control"
|
|
id="backupcode"
|
|
name="backupcode"
|
|
type="password"
|
|
value=""
|
|
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 %)
|