templates/reset_password/request.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Réinitialisation du mot de passe{% endblock %}
  3. {% block body %}
  4.     {% include 'theme/block/title.html.twig' with {'title': 'Mot de passe oublié'} %}
  5.     {{ form_start(requestForm) }}
  6.         {{ form_row(requestForm.email) }}
  7.         <button class="btn btn-primary">Réinitialiser</button>
  8.         <div class="register">Vous n'avez pas de compte ? <a href="{{path('app_register')}}">Inscrivez vous</a></div>
  9.     {{ form_end(requestForm) }}
  10. {% endblock %}