templates/register/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block body %}
  3.   <div class="container-fluid position-relative p-0">
  4.         <div class="container-fluid bg-primary py-5 bg-header" style="margin-bottom: 90px;">
  5.             <div class="row py-5">
  6.                 <div class="col-12 pt-lg-5 mt-lg-5 text-center">
  7.                     <h1 class="display-4 text-white animated zoomIn">S'inscrire</h1>
  8.                     <a href="{{ path('home') }}" class="h5 text-white">Accueil</a>
  9.                     <i class="far fa-circle text-white px-2"></i>
  10.                     <a href="" class="h5 text-white">Inscription</a>
  11.                 </div>
  12.             </div>
  13.         </div>
  14.     </div>
  15. <!-- Page Header End -->
  16.    <!-- Contact Start -->
  17.     <div class="container-fluid py-5 wow" data-wow-delay="0.1s">
  18.         <div class="container py-5">
  19.             <div class="section-title text-center position-relative pb-3 mb-5 mx-auto" style="max-width: 600px;">
  20.                 <h5 class="fw-bold text-primary text-uppercase">Inscription</h5>
  21.                 <h1 class="mb-0">Renseignez vos informations</h1>
  22.             </div>
  23.             <div class="row g-5 " style="display: flex; justify-content: center;">
  24.                 <div class="col-lg-6 " data-wow-delay="0.3s">
  25.                     <div class="col-md-12">
  26.                         {{form(form)}}
  27.                     </div>
  28.                 </div>
  29.             </div>
  30.         </div>
  31.     </div>
  32.     <!-- Contact End -->
  33. {% endblock %}