templates/user/security/layout.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block head_titre %}
  3.     {{ parent() }} - Identification
  4. {% endblock %}
  5. {% block body %}
  6.     <div class="mt-2 mb-2 p-4 border">
  7.         {% block body_layout %}
  8.             {{ include('user/security/inscription-content.html.twig') }}
  9.         {% endblock %}
  10.     </div>
  11. {% endblock %}