reset.html.twig 355 B

123456789101112
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Réinitialisez votre mot de passe{% endblock %}
  3. {% block content %}
  4. <h1>Réinitialisez votre mot de passe</h1>
  5. {{ form_start(resetForm) }}
  6. {{ form_row(resetForm.plainPassword) }}
  7. <button class="btn btn-primary">Reset password</button>
  8. {{ form_end(resetForm) }}
  9. {% endblock %}