templates/user/security/mot-de-passe-oublie-content.html.twig line 1

Open in your IDE?
  1. <p class="login-box-msg">Veuillez votre adresse email afin de re-générer votre mot de passe.</p>
  2. {{ form_start(theForm, {'action' : path('user_security_mot_de_passe_oublie')}) }}
  3.     {{ form_row(theForm.email) }}
  4.     <div class="row mb-3">
  5.         <div class="col-12">
  6.             <button type="submit" class="btn btn-primary btn-block">
  7.                 <i class="fa fa-envelope"></i> Envoyer nouveau mot de passe
  8.             </button>
  9.         </div>
  10.     </div>
  11.     {{ form_errors(theForm) }}
  12.     {{ form_rest(theForm) }}
  13. {{ form_end(theForm) }}
  14. <p class="mb-0">
  15.     <a href="{{ path('user_security_login') }}">Connexion</a>
  16.     <a href="{{ path('user_security_inscription') }}" title="Inscription">Inscription</a>
  17. </p>