templates/errors/error403.html.twig line 1

Open in your IDE?
  1. {% extends "@Public/common/general-layout.html.twig" %}
  2. {% set isAuthenticated = is_granted("IS_AUTHENTICATED_REMEMBERED") %}
  3. {% block body_class %}{{ parent() }} exception-page {% endblock body_class %}
  4. {% block content %}
  5.     {% include "@Public/errors/partials/_error_title.html.twig" %}
  6.     <section class="content">
  7.         <div class="box box-default alert-danger">
  8.             <div class="box-body">
  9.                 <div class="row">
  10.                     <div class="col col-xs-12 col-md-12">
  11.                         <p>You do not have permission to view this page.</p>
  12.                         
  13.                     </div>
  14.                 </div>
  15.             </div>
  16.         </div>
  17.     </section>
  18. {% endblock %}