templates/user/security/inscription-content.html.twig line 1

Open in your IDE?
  1. <p class="login-box-msg">Veuillez remplir les champs pour procéder à votre inscription :</p>
  2. <BR>
  3. {{ form_start(theForm) }}
  4.     {{ form_row(theForm.username) }}
  5.     {{ form_row(theForm.nom) }}
  6.     {{ form_row(theForm.prenom) }}
  7.     {{ form_row(theForm.email) }}
  8.     {{ form_row(theForm.plainPassword) }}
  9.     <div class="row mb-3">
  10.         <div class="col-8">
  11.         </div>
  12.         <div class="col-4">
  13.             <button type="submit" class="btn btn-primary btn-block">
  14.                 <i class="fa fa-sign-in-alt"></i>
  15.             </button>
  16.         </div>
  17.     </div>
  18.     {{ form_errors(theForm) }}
  19.     {{ form_rest(theForm) }}
  20. {{ form_end(theForm) }}
  21. <p class="mb-0">
  22.     <a href="{{ path('user_security_login') }}">Connexion</a>
  23.     <a href="{{ path('user_security_mot_de_passe_oublie') }}" title="Mot de passe oublié">J'ai oublié mon mot de passe</a>
  24. </p>