2025-04-10 14:47:33 +10:00

13 lines
388 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="text-center py-5">
<h1 class="display-1">404</h1>
<h2>Page Not Found</h2>
<p class="lead">
Sorry, we couldn't find the page you were looking for.
</p>
<a href="{{ url_for('core.index') }}" class="btn btn-primary mt-3">Go Back Home</a>
</div>
{% endblock %}