You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
314 B
10 lines
314 B
{% extends 'base.html.twig' %} |
|
|
|
{% block title %}Access Denied (403){% endblock %} |
|
|
|
{% block body %} |
|
<h1>Access Denied</h1> |
|
<p>You do not have permission to access this page.</p> |
|
<p><a href="{{ path('app_login') }}">Login</a> or <a href="{{ path('home') }}">return to homepage</a>.</p> |
|
{% endblock %} |
|
|
|
|