16 lines
No EOL
445 B
HTML
16 lines
No EOL
445 B
HTML
{% 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 %} |