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. {{ form_start(theForm) }}
  3.     {{ form_row(theForm.username) }}
  4.     {{ form_row(theForm.nom) }}
  5.     {{ form_row(theForm.prenom) }}
  6.     {{ form_row(theForm.email) }}
  7.     {{ form_row(theForm.plainPassword) }}
  8.     <div class="row mb-3">
  9.         <div class="col-8">
  10.         </div>
  11.         <div class="col-4">
  12.             <button type="submit" class="btn btn-primary btn-block">
  13.                 <i class="fa fa-sign-in-alt"></i>
  14.             </button>
  15.         </div>
  16.     </div>
  17.     {{ form_errors(theForm) }}
  18.     {{ form_rest(theForm) }}
  19. {{ form_end(theForm) }}
  20. <p class="mb-0">
  21.     <a href="{{ path('user_security_login') }}">Connexion</a>
  22.     <a href="{{ path('user_security_mot_de_passe_oublie') }}" title="Mot de passe oublié">J'ai oublié mon mot de passe</a>
  23. </p>