kanidm/server/core/templates/unrecoverable_error.html
Georg 6458660a24 Correct spelling of occurred (#3222)
Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
2024-11-22 12:14:06 +10: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 %)