templates/reset_password/request.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Reset your 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="row">
  8.         <div class="col s10 offset-s1 l6 offset-l3 card z-depth-3" style="border-radius: 20px; margin-top: 5%">
  9.             <img class="center-align center center-block " src="{{ asset('img/login.png') }}" style="max-height: 70px; margin-top: 20px" alt="">
  10.             <h3 class="center">Reset your password</h3>
  11.             {{ form_start(requestForm) }}
  12.             {{ form_row(requestForm.email) }}
  13.             <div>
  14.                 <small>
  15.                     Enter your email address and we will send you a
  16.                     link to reset your password.
  17.                 </small>
  18.             </div>
  19.             <button class="btn btn-primary center-align center center-block col s8 offset-s2 " style="margin-bottom: 20px; margin-top: 20px" >Send password reset email <i class="fa fa-sync right prefix"></i></button>
  20.             {{ form_end(requestForm) }}
  21.             <div class="col s12 " style="margin-left:-20px; margin-bottom: 20px; margin-top: -20px">
  22.                 <p class="right-align">Or <a href="{{ path('app_login') }}">Sign In</a>
  23.                 </p>
  24.             </div>
  25.         </div>
  26.     </div>
  27. {% endblock %}