templates/reset_password/request.html.twig line 20

  1. {% extends 'base.html.twig' %}
  2. {% block title %}Reset your password{% endblock %}
  3. {% block meta_description %}Reset your password.{% endblock %}
  4. {% block body %}
  5.     <div class="content">
  6.         <div class="flex flex-col items-center justify-center px-6 py-16 mx-auto">
  7.             <div class="w-full bg-gray-50 rounded-lg shadow md:mt-0 sm:max-w-xl xl:p-0 py-6">
  8.                 <div class="p-6 space-y-4 md:space-y-6 sm:p-8">
  9.                     <h1 class="text-xl font-bold leading-tight tracking-tight text-gray-900 md:text-2xl">
  10.                         Reset your password
  11.                     </h1>
  12.                     {% for flash_error in app.flashes('reset_password_error') %}
  13.                         <div class="alert alert-danger" role="alert">{{ flash_error }}</div>
  14.                     {% endfor %}
  15.                     {{ form_start(requestForm) }}
  16.                     {{ form_row(requestForm.email) }}
  17.                     <button class="button-blue">Send password reset email</button>
  18.                     {{ form_end(requestForm) }}
  19.                 </div>
  20.             </div>
  21.         </div>
  22.     </div>
  23. {% endblock %}