templates/security/forgot-password.html.twig line 1

Open in your IDE?
  1. {% extends 'concawe/page/authentication.twig' %}
  2. {% block title %}Forgot password{% endblock %}
  3. {% block flash %}{% endblock %}
  4. {% block auth %}
  5.     <div id="flash">
  6.         {% for label, messages in app.flashes %}
  7.             {% for message in messages %}
  8.                 <p class="alert alert-{{ label }}">
  9.                     {{ message }}
  10.                 </p>
  11.             {% endfor %}
  12.         {% endfor %}
  13.     </div>
  14.     <p class="alert alert-warning text-center">
  15.         Fill in your e-mail address, and we will send you an e-mail containing a link allowing you to choose a
  16.         new password.
  17.     </p>
  18.     {{ form_start(form) }}
  19.     {{ form_row(form._token) }}
  20.     {{ form_row(form.email) }}
  21.     <div class="row align-items-center">
  22.         <div class="col-12 col-sm-4">
  23.             <p class="text-center text-sm-left">
  24.                 <a href="{{ url('security.sign-in') }}" class="small">Cancel</a>
  25.             </p>
  26.         </div>
  27.         <div class="col-xs-12 col-sm-8">
  28.             <p class="text-center text-sm-right">
  29.                 <button type="submit" class="btn btn-primary">Continue <em class="fa fa-lock"></em></button>
  30.             </p>
  31.         </div>
  32.     </div>
  33.     {{ form_end(form) }}
  34. {% endblock %}