10 lines
348 B
HTML
10 lines
348 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Access denied - Face Attendance{% endblock %}
|
|
{% block content %}
|
|
<section class="error-page">
|
|
<h1>Access denied</h1>
|
|
<p>Your account does not have permission to perform this action.</p>
|
|
<a class="btn btn-primary" href="{{ url_for('main.dashboard') }}">Go to dashboard</a>
|
|
</section>
|
|
{% endblock %}
|