kanidm/server/core/templates/unrecoverable_error.html
Georg 77e13b817a
Correct spelling of occurred (#3222)
Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
2024-11-19 00:37:51 +00:00

17 lines
352 B
HTML

(% extends "base.html" %)
(% block title %)Error(% endblock %)
(% block head %)
(% endblock %)
(% block body %)
<h2>Error</h2>
<main id="main">
<p>An unrecoverable error occurred. Please contact your administrator with the details below.</p>
<p>Error Code: (( err_code ))</p>
<p>Operation ID: (( operation_id ))</p>
</main>
(% endblock %)