10 lines
260 B
HTML
10 lines
260 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div class="error-page">
|
|
<h1>404</h1>
|
|
<h2>Page Not Found</h2>
|
|
<p>Sorry, the page you're looking for doesn't exist.</p>
|
|
<a href="{{ url_for('index') }}" class="btn">Go Home</a>
|
|
</div>
|
|
{% endblock %} |