10 lines
269 B
HTML
10 lines
269 B
HTML
{% extends 'error_handler_base.html' %}
|
|
|
|
{% block content %}
|
|
<div class="text-center mt-5">
|
|
<h1>403, forbidden</h1>
|
|
<p>You need the proper permission to make that request.</p>
|
|
<a href="/" class="link">← Return to the app</a>
|
|
</div>
|
|
{% endblock %}
|