summaryrefslogtreecommitdiff
path: root/src/jwebmail/templates/not_found.html
diff options
context:
space:
mode:
authorJannis M. Hoffmann <jannis@fehcom.de>2023-12-03 19:22:12 +0100
committerJannis M. Hoffmann <jannis@fehcom.de>2023-12-03 19:22:12 +0100
commit2cf2a68bd1c25d8fe4f3126f40bd57982cc6b2a4 (patch)
treeb5c8ed0e1cfe8eac311829296a9aca062bb1abc1 /src/jwebmail/templates/not_found.html
initial commit
Diffstat (limited to 'src/jwebmail/templates/not_found.html')
-rw-r--r--src/jwebmail/templates/not_found.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/jwebmail/templates/not_found.html b/src/jwebmail/templates/not_found.html
new file mode 100644
index 0000000..1dc8f0c
--- /dev/null
+++ b/src/jwebmail/templates/not_found.html
@@ -0,0 +1,25 @@
+<html>
+
+ <head>
+ <meta charset=utf-8>
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+
+ <title>Not Found</title>
+
+ <link type=stylesheet href="{{ url_for('static', filename='css/my_bulma.css') }}">
+ </head>
+
+ <body>
+ <section class=hero>
+ <div class=hero-body>
+ <h1 class=title>
+ Not the page you are looking for.
+ </h1>
+ <p>
+ Go back or go to the <a href="{{ url_for('login') }}">{% trans %}start page{% endtrans %}</a>.
+ </p>
+ </div>
+ </section>
+ </body>
+
+</html>