10 lines
199 B
HTML
10 lines
199 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
<h1>An unexpected error has occurred.</h1>
|
||
|
<p>Administrator has been notified.</p>
|
||
|
<p><a href="{{ url_for('index') }}">Back</a></p>
|
||
|
|
||
|
{% endblock %}
|