summaryrefslogtreecommitdiffstats
path: root/app/templates/404.html
diff options
context:
space:
mode:
Diffstat (limited to 'app/templates/404.html')
-rw-r--r--app/templates/404.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/templates/404.html b/app/templates/404.html
new file mode 100644
index 0000000..a1526ff
--- /dev/null
+++ b/app/templates/404.html
@@ -0,0 +1,16 @@
+{% extends "_layout.html" %}
+{% block body %}
+<h2>Fehler 403 - Zugang verboten</h2>
+
+<dl>
+ <dt>Code</dt>
+ <dd>{{error.code}}</dd>
+
+ <dt>Beschreibung</dt>
+ <dd>{{error.description}}</dd>
+</dl>
+
+<p>
+ <a href="{{url_for('main.index')}}">zur Startseite</a>
+</p>
+{% endblock %}