File size: 259 Bytes
d8c0d49
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
{% extends "base.html" %}

{% block content %}
<div class="error-container">
    <h1>404 - Page Not Found</h1>
    <p>The page you're looking for doesn't exist.</p>
    <a href="{{ url_for('index') }}" class="cta-button">Return Home</a>
</div>
{% endblock %}