templates/reset_password/request.html.twig line 1

Open in your IDE?
  1. {% extends 'app/security_tpl.html.twig' %}
  2. {% block title %}Reset your password{% endblock %}
  3. {% block page_content %}
  4.     <div class="sign-up-header">
  5.         <h3 class="text-center mb-4">Reset your password</h3>
  6.     </div>
  7.     <div class="card">
  8.         <div class="card-body">
  9.             {% for flash_error in app.flashes('reset_password_error') %}
  10.                 <div class="alert alert-danger" role="alert">{{ flash_error }}</div>
  11.             {% endfor %}
  12.             
  13.             <p class="mt-2 lh-2 text-muted"> Enter your email address associate with your account we'll send you a link to reset your password.</p>
  14.             {{ form_start(requestForm, {'attr':{'class':'form-style'}}) }}
  15.                 {{ form_row(requestForm.email, {'attr':{'class':'form-control'}}) }}<br />
  16.                 <button class="btn btn-primary w-100 btn-lg">Send password reset email</button>
  17.             {{ form_end(requestForm) }}
  18.         </div>
  19.     </div>
  20.     <p class="text-center"><a class="text-danger" href="{{ path('app.login') }}"><i class="fa fa-arrow-left" aria-hidden="true"></i> Return to Login </a></p>
  21. {% endblock %}