12 lines
371 B
Twig
12 lines
371 B
Twig
{% extends 'master.twig' %}
|
|
|
|
{% set title = 'Restricted' %}
|
|
|
|
{% block content %}
|
|
<div class="content standalone">
|
|
<div>
|
|
<h1>You aren't allowed to view this page!</h1>
|
|
Please make sure that you're logged in and are supposed to be able to access this page. If you think this was a mistake please contact a staff member.
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|