mirror of
https://github.com/kanidm/kanidm.git
synced 2025-05-25 10:23:55 +02:00
24 lines
619 B
HTML
24 lines
619 B
HTML
(% extends "login_base.html" %)
|
|
|
|
(% block logincontainer %)
|
|
<script id="data" type="application/json">
|
|
(( chal|safe ))
|
|
</script>
|
|
|
|
<script
|
|
src="/pkg/external/base64.js?v=((crate::https::cache_buster::get_cache_buster_key()))"
|
|
async></script>
|
|
<script
|
|
src="/pkg/pkhtml.js?v=((crate::https::cache_buster::get_cache_buster_key()))"
|
|
defer></script>
|
|
|
|
(% if passkey %)
|
|
<button hx-disable type="button" class="btn btn-dark"
|
|
id="start-passkey-button">Use Passkey</button>
|
|
(% else %)
|
|
<button type="button" class="btn btn-dark" id="start-seckey-button">Use Security
|
|
Key</button>
|
|
(% endif %)
|
|
|
|
(% endblock %)
|