Learning-Management-System/lms/templates/403.html
2025-01-10 19:54:55 +02:00

13 lines
285 B
HTML

{% extends "base.html" %}
{% block title %}Forbidden (403){% endblock title %}
{% block content %}
<h1>Forbidden (403)</h1>
<p>
{% if exception %}
{{ exception }}
{% else %}
You're not allowed to access this page.
{% endif %}
</p>
{% endblock content %}