blob: 1dc8f0c109f0b1b037fae5894b98ed2030686e5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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>
|