templates/reset_password/request.html.twig line 11

Open in your IDE?
  1. {% extends 'access.html.twig' %}
  2. {% block title %}Resetta la tua 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.     <h3>Resetta la tua password</h3>
  8.     {{ form_start(requestForm) }}
  9.         <div class="form-group">
  10.             <label>E-mail</label>
  11.             {{ form_widget(requestForm.email, { 'attr': {'placeholder': 'Inserisci la tua mail', 'class': 'form-control'} }) }}
  12.             <div class="error" id="error-email">{{ form_errors(requestForm.email) }}</div>
  13.         </div>
  14.         <div>
  15.             <small>
  16.                 Inserisci il tuo indirizzo email e ti invieremo un
  17.                 link per reimpostare la password.
  18.             </small>
  19.         </div><br />
  20.         <button class="btn btn-danger">Premi qui per reimpostare la password</button>
  21.     {{ form_end(requestForm) }}
  22. {% endblock %}