mirror of
https://github.com/kanidm/kanidm.git
synced 2025-06-11 02:27:47 +02:00
32 lines
771 B
HTML
32 lines
771 B
HTML
(% extends "base.html" %)
|
|
|
|
(% block title %)Login(% endblock %)
|
|
|
|
(% block head %)
|
|
(% endblock %)
|
|
|
|
(% block body %)
|
|
<main id="main" class="flex-shrink-0 form-signin">
|
|
<center>
|
|
(% if display_ctx.domain_info.image().is_some() %)
|
|
<img src="/ui/images/domain"
|
|
alt="Kanidm" class="kanidm_logo" />
|
|
(% else %)
|
|
<img
|
|
src="/pkg/img/logo-square.svg?v=((crate::https::cache_buster::get_cache_buster_key()))"
|
|
alt="Kanidm" class="kanidm_logo" />
|
|
(% endif %)
|
|
<h3>Kanidm</h3>
|
|
(% if let Some(reauth) = display_ctx.reauth %)
|
|
<h5>Reauthenticating as (( reauth.username )) to access (( reauth.purpose
|
|
))</h5>
|
|
(% endif %)
|
|
</center>
|
|
|
|
<div id="login-form-container" class="container">
|
|
(% block logincontainer %)
|
|
(% endblock %)
|
|
</div>
|
|
</main>
|
|
(% endblock %)
|