2025-10-16 20:11:16 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
|
|
{% block title %}Access Denied{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
<div style="max-width: 600px; margin: 100px auto; text-align: center;">
|
|
|
|
|
<h1>403 - Access Denied</h1>
|
|
|
|
|
<p>You do not have permission to access this resource.</p>
|
|
|
|
|
<p>
|
|
|
|
|
<a href="{{ url_for('dashboard.list') }}">Return to Dashboard</a> |
|
2025-10-17 15:19:49 +02:00
|
|
|
<a href="{{ url_for('landing.index') }}">Go to Home</a>
|
2025-10-16 20:11:16 +02:00
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
{% endblock %}
|