9 lines
190 B
Twig
9 lines
190 B
Twig
|
{% extends 'errors/master.twig' %}
|
||
|
|
||
|
{% set error_code = 401 %}
|
||
|
{% set error_text = 'Unauthorised!' %}
|
||
|
|
||
|
{% block error_message %}
|
||
|
<p>You must log in to view this page.</p>
|
||
|
{% endblock %}
|