templates/homesignup.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Créer un compte{% endblock %}
  3. {% block content %}
  4.     <section class="page_title ds s-overlay s-pt-150 s-pb-50"
  5.              style="background-image: url({{ asset('assets/images/cbrc/imagefond.jpg') }})">
  6.         <div class="s-blur"></div>
  7.         <div class="container">
  8.             <div class="row">
  9.                 <div class="col-md-12 text-center">
  10.                     <h1><i class="fas fa-user-plus mr-3"></i></i>Créer un compte</h1>
  11.                 </div>
  12.             </div>
  13.         </div>
  14.     </section>
  15.     <section class="ls s-py-xl-150 s-py-lg-130 s-py-md-90 s-py-60">
  16.         <div class="container">
  17.             <div class="row justify-content-around ">
  18.                 <div class="col-lg-6 col-md-8 col-12 card p-2 woocommerce-EditAccountForm">
  19.                     <div class="card-body">
  20.                         {{ form_start(registerform) }}
  21.                         {{ form_row(registerform.email) }}
  22.                         {{ form_row(registerform.plainPassword) }}
  23.                         <div class="form-check round-check mb-3">
  24.                             <input class="form-check-input" type="checkbox" id="termsofuse" required>
  25.                             <label class="form-check-label" for="termsofuse">
  26.                                 <span class="small">Vous avez lu et vous acceptez les <a
  27.                                             href="{{ path('legal', relative = false) }}">conditions d'utilisation</a></span>
  28.                             </label>
  29.                         </div>
  30.                         {{ form_row(registerform.register) }}
  31.                         {{ form_end(registerform) }}
  32.                         <small>
  33.                             Vous avez un compte? <a href="{{ path('app_login', {}, relative = false) }}"><u>Connectez-vous</u></a>
  34.                         </small>
  35.                     </div>
  36.                 </div>
  37.             </div>
  38.         </div>
  39.     </section>
  40. {% endblock %}