Files
TimeTrack/templates/404.html
2025-06-28 09:33:39 +02:00

9 lines
257 B
HTML

{% extends "layout.html" %}
{% block content %}
<div class="error-container">
<h1>404 - Page Not Found</h1>
<p>The page you are looking for does not exist.</p>
<a href="{{ url_for('home') }}" class="btn">Return to Home</a>
</div>
{% endblock %}