Files
MIND/frontend/templates/page_not_found.html
2024-02-23 12:37:10 +01:00

25 lines
753 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="{{ url_for('static', filename='img/favicon.svg') }}" type="image/x-icon">
<link rel="stylesheet" href="{{ url_for('static', filename='css/general.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/page_not_found.css') }}">
<title>Page Not Found - MIND</title>
</head>
<body>
<header>
<img src="{{ url_for('static', filename='img/favicon.svg') }}" alt="">
</header>
<main>
<h2>MIND</h1>
<p>404 - Page not found :(</p>
<a href="{{url_prefix}}/">Go to home page</a>
</main>
</body>
</html>