templates/reset_password/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Mot de passe oublié - Sur le pouce{% endblock %}
  3. {% block content %}
  4. <div class="block-small">
  5.  {% for message in app.flashes('notice') %}
  6.             <div class="alert alert-info">{{ message }}</div>
  7.         {% endfor %}
  8.     <form method="post">
  9.        
  10.         <h1 class="h3 mb-3 font-weight-normal">Réinitialiser mon mot de passe</h1>
  11.         <label for="inputEmail">Votre email</label>
  12.         <input type="email" name="email" id="inputEmail" class="form-control" autocomplete="email" placeholder="Votre email ici" required autofocus>
  13.         
  14.         
  15.     <br>
  16.         <button class="btn btn-lg btn-info btn-block mt-3" type="submit">
  17.            Valider
  18.         </button>
  19.         <hr>
  20.         <p class="text-center">Ou souhaitez-vous <a href="{{ path('app_login')}}">Vous connecter</a>?</p>
  21.     </form>
  22.  </div>   
  23. {% endblock %}