10 lines
359 B
HTML
10 lines
359 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Server error - Face Attendance{% endblock %}
|
|
{% block content %}
|
|
<section class="error-page">
|
|
<h1>Server error</h1>
|
|
<p>The application could not complete the request. The error has been logged.</p>
|
|
<a class="btn btn-primary" href="{{ url_for('main.dashboard') }}">Go to dashboard</a>
|
|
</section>
|
|
{% endblock %}
|