src/templates/Security/error.html.twig line 1

Open in your IDE?
  1. {% extends "layout_inicio.html.twig" %}
  2. {% block javascripts %}
  3.     {{ parent() }}
  4.     
  5.     {% if logout is defined %}
  6.         <script  type="text/javascript">
  7.             window.setTimeout(function() {
  8.                 document.location.href = '{{ path('app_logout') }}';
  9.             }, 3*1000);
  10.         </script>
  11.     {% endif %}
  12. {% endblock %}
  13. {% block content %} 
  14.     {% if kind is not defined %}
  15.         {% set kind = 'danger' %}
  16.     {% endif %}
  17.     <div class="alert alert-{{ kind }}">
  18.         <strong>
  19.             <i class="ace-icon fa fa-info-circle bigger-150"></i>
  20.             {% if error_cod is defined %}{{ error_cod | raw }} {% endif %}
  21.         </strong>
  22.         <br>
  23.     </div>
  24.   
  25. {% endblock %}