templates/reset_password/request.html.twig line 1

Open in your IDE?
  1. {% extends 'base_front.html.twig' %}
  2. {% block title %}{{ parent() }} | RĂ©initialiser votre mot de passe{% endblock %}
  3. {% block h1 %}RĂ©initialiser votre mot de passe{% endblock %}
  4. {% block body %}
  5.     {{ form_start(form, { 'attr' : {'class' : "rounded mx-12 bg-white p-3 mt-4"}}) }}
  6.         {{ form_row(form.emailReset) }}
  7.         <button class="btn btn-primary w-100 rounded mt-3">Envoyer</button>
  8.     {{ form_end(form) }}
  9. {% endblock %}