This commit is contained in:
pika 2025-03-24 20:34:42 +01:00
parent 34afc48816
commit 4e781ba819
8 changed files with 855 additions and 160 deletions

View file

@ -0,0 +1,16 @@
{% extends "base.html" %}
{% block title %}Page Not Found - Flask Files{% endblock %}
{% block content %}
<div class="error-container">
<div class="error-icon">
<i class="fas fa-exclamation-triangle"></i>
</div>
<h1>404 Not Found</h1>
<p>The page you're looking for doesn't exist.</p>
<a href="{{ url_for('dashboard.index') }}" class="btn primary">
<i class="fas fa-home"></i> Return to Dashboard
</a>
</div>
{% endblock %}