10 lines
332 B
HTML
10 lines
332 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 %}
|