minauthator/lib/http_server/src/templates/pages/error.html

12 lines
227 B
HTML
Raw Normal View History

{% extends "layouts/base.html" %}
{% block body %}
<h1>Internal server error</h1>
{% if error %}
<div class="alert alert-danger">
We are sorry. We've rencountered an unrecoverable error.
</div>
{% endif %}
{% endblock %}