mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
30 lines
812 B
HTML
30 lines
812 B
HTML
(% extends "base.html" %)
|
|
|
|
(% block title %)Error(% endblock %)
|
|
|
|
(% block head %)
|
|
(% endblock %)
|
|
|
|
(% block body %)
|
|
<main id="main" class="m-auto align-items-center d-flex flex-column">
|
|
(% if domain_info.image().is_some() %)
|
|
<img src="/ui/images/domain"
|
|
alt="(( domain_info.display_name() ))" class="kanidm_logo" />
|
|
(% else %)
|
|
<img
|
|
src="/pkg/img/logo-square.svg?v=((crate::https::cache_buster::get_cache_buster_key()))"
|
|
alt="(( domain_info.display_name() ))" class="kanidm_logo" />
|
|
(% endif %)
|
|
<h3>(( domain_info.display_name() ))</h3>
|
|
|
|
|
|
<h2>Error</h2>
|
|
<p>An unrecoverable error occurred. Please contact your administrator with the details below.</p>
|
|
<p>Operation ID: (( operation_id ))</p>
|
|
<p>Error Code: (( err_code ))</p>
|
|
<a href=((Urls::Ui))>Return</a>
|
|
</main>
|
|
|
|
(% endblock %)
|
|
|