15 lines
427 B
HTML
15 lines
427 B
HTML
{% extends "base.html" %}
|
|||
|
|
|
||
|
|
{% block title %}Not Found{% endblock %}
|
||
|
|
|
||
|
|
{% block content %}
|
||
|
|
<div style="max-width: 600px; margin: 100px auto; text-align: center;">
|
||
|
|
<h1>404 - Not Found</h1>
|
||
|
|
<p>The page or resource you requested could not be found.</p>
|
||
|
|
<p>
|
||
|
|
<a href="{{ url_for('dashboard.list') }}">Return to Dashboard</a> |
|
||
|
|
<a href="{{ url_for('index') }}">Go to Home</a>
|
||
|
|
</p>
|
||
|
|
</div>
|
||
|
|
{% endblock %}
|