site/backend/app/templates/404.html
2024-08-03 06:31:19 -07:00

9 lines
139 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>File Not Found</h1>
<p><a href="{{ url_for('index') }}">Back</a></p>
{% endblock %}