templates/accesos/usuario/recuperarPassword.html.twig line 1

Open in your IDE?
  1. {% extends 'accesos/usuario/base.html.twig' %}
  2. {% block body %}
  3.     <h4>{{ 'usuario.recuperar'|trans }}</h4><br>
  4.     
  5.     {{ form_start(form) }}
  6.     {{ form_row(form.email) }}<br>
  7.     {% for message in app.flashes('mal') %}
  8.         <div class="text-danger">
  9.             {{ message|trans }}
  10.         </div><br>
  11.     {% endfor %}
  12.     <button class="btn btn-primary" type="submit">
  13.         {{ 'usuario.recuperar'|trans }}
  14.     </button>
  15.     {{ form_end(form) }}
  16.     <br><br>
  17.     {% for message in app.flashes('bien') %}
  18.         <div class="text-success">
  19.             {{ message|trans }}
  20.         </div><br>
  21.     {% endfor %}
  22. </form>
  23. {% endblock%}