templates/auth/reset_password/request.html.twig line 1

Open in your IDE?
  1. {% extends 'guest_layout.html.twig' %}
  2. {% block title %}Set a new Password{% endblock %}
  3. {% block body %}
  4.     {% for flash_error in app.flashes('reset_password_error') %}
  5.         <div class="alert alert-danger" role="alert">{{ flash_error }}</div>
  6.     {% endfor %}
  7.     <div class="d-grid gap-2 col-6 mx-auto">        
  8.         <div>
  9.             <small>
  10.                 Enter your email address and we will send you a link to set a new password.
  11.             </small>
  12.         </div>
  13.         
  14.         {{ form_start(requestForm) }}
  15.         {{ form_row(requestForm.email) }}
  16.         <button class="btn btn-warning btn-block btn-lg" style="margin-top: 15px;">Submit</button>
  17.         {{ form_end(requestForm) }}
  18.     </div>
  19. {% endblock %}