templates/mdp/resetpassword.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Réinitialisez votre mot de passe{% endblock %}
  3. {% block body %}
  4. <div class="text-center mb-5">
  5.     <img src="{{ asset('img/logo_transparent.png') }}" height="130vh"/><br/>
  6.     <h1>Réinitialisez votre mot de passe</h1>
  7. </div>
  8. {{ form_start(motDePasseOublieForm) }}
  9.     <div class="row">
  10.         <div class="offset-3 col-6">
  11.             <label for="email">Email :</label>
  12.             {{ form_widget(motDePasseOublieForm.email) }}
  13.             <small>
  14.                 Entrez votre adresse e-mail et nous vous enverrons un nouveau mot de passe.
  15.             </small>
  16.             <button type="submit" class="btn btn-primary">Envoyer mail de réinitialisation</button>
  17.         </div>
  18.     </div>
  19. {{ form_end(motDePasseOublieForm) }}
  20. {% endblock %}