Files
face-attendance/app/templates/errors/404.html
2026-05-01 21:24:21 +03:30

10 lines
333 B
HTML

{% extends "base.html" %}
{% block title %}Not found · Face Attendance{% endblock %}
{% block content %}
<section class="error-page">
<h1>Page not found</h1>
<p>The page or record you requested does not exist.</p>
<a class="btn btn-primary" href="{{ url_for('main.dashboard') }}">Go to dashboard</a>
</section>
{% endblock %}