templates/security/front/auth.html.twig line 1

Open in your IDE?
  1. {% extends 'index.html.twig' %}
  2. {% block content %}
  3. <div class="bg_blue">
  4.     <div class="car"></div>
  5.     <section class="container form connexion">
  6.         <h3 class="category">{{ 'inscription1.category'|trans }}</h3>
  7.         <h1 class="title">{{ 'inscription1.title'|trans }}</h1>
  8.         
  9.         <div class="col">
  10.             {% include 'security/front/_connexion.html.twig' %}
  11.         </div>
  12.     </section>
  13. </div>
  14. {% endblock %}
  15. {% block javascripts %}
  16.     {{ parent() }}
  17.     {{ encore_entry_script_tags('register') }}
  18. {% endblock %}