mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
Rather than the generic 'invalid state' error, we now return proper site-specific errors for credential commit failures, with error messages to explain what went wrong.
18 lines
386 B
HTML
18 lines
386 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>Operation ID: (( operation_id ))</p>
|
|
<p>Error Code: (( err_code ))</p>
|
|
<a href=((Urls::Ui))>Return</a>
|
|
</main>
|
|
(% endblock %)
|
|
|