- {% extends 'index.html.twig' %}
- {% block title %}Reset your password{% endblock %}
- {% block content %}
-     <div class="bg_blue">
-         <section class="container form connexion">
-             {% if requestForm is defined %}
-                 <h3 class="category">{{ 'form.forgot'|trans }}</h3>
-                 <h1 class="title">{{ 'reset_pwd.title'|trans }}</h1>
-                 <div class="row">
-                     <div class="formblock twocols">
-                         {% include 'reset_password/request.html.twig' %}
-                     </div>
-                 </div>
-             {%  else %}
-                 {% include 'reset_password/confirm.html.twig' %}
-             {% endif %}
-         </section>
-     </div>
- {% endblock %}
- {% block javascripts %}
-     {{ parent() }}
-     {{ encore_entry_script_tags('auth') }}
- {% endblock %}