wip
This commit is contained in:
parent
34afc48816
commit
4e781ba819
8 changed files with 855 additions and 160 deletions
16
app/templates/errors/404.html
Normal file
16
app/templates/errors/404.html
Normal 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 %}
|
Loading…
Add table
Add a link
Reference in a new issue