templates/reset_password/recover.html.twig line 1

Open in your IDE?
  1. {% extends 'index.html.twig' %}
  2. {% block title %}Reset your password{% endblock %}
  3. {% block content %}
  4.     <div class="bg_blue">
  5.         <section class="container form connexion">
  6.             {% if requestForm is defined %}
  7.                 <h3 class="category">{{ 'form.forgot'|trans }}</h3>
  8.                 <h1 class="title">{{ 'reset_pwd.title'|trans }}</h1>
  9.                 <div class="row">
  10.                     <div class="formblock twocols">
  11.                         {% include 'reset_password/request.html.twig' %}
  12.                     </div>
  13.                 </div>
  14.             {%  else %}
  15.                 {% include 'reset_password/confirm.html.twig' %}
  16.             {% endif %}
  17.         </section>
  18.     </div>
  19. {% endblock %}
  20. {% block javascripts %}
  21.     {{ parent() }}
  22.     {{ encore_entry_script_tags('auth') }}
  23. {% endblock %}