* [cleanup] login, message pages * [style] cleanups * [cleanup] * [cleanup] update password * [fix] name for web form (fixes edit-profile)
16 lines
319 B
HTML
16 lines
319 B
HTML
{% extends "templates/web.html" %}
|
|
|
|
{% block title %}Error{% endblock %}
|
|
|
|
{% block header %}
|
|
<h2 class="text-danger">
|
|
<i class="fa fa-exclamation-sign"></i> Uncaught Server Exception
|
|
</h2>
|
|
{% endblock %}
|
|
|
|
{% block page_content %}
|
|
|
|
<div class="error-content">
|
|
<pre><code>{{ error }}</code></pre>
|
|
</div>
|
|
{% endblock %}
|