templates/acoa/security/forgot_password.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Mot de passe oubliĆ©{% endblock %}
  3. {% block content %}
  4. {% form_theme form 'tailwind_2_layout.html.twig' %}
  5. <div id="maininscription">
  6.     <!-- CONTAINER -->
  7.     <div class="w-full pt-6 pb-1 forGotPassM">
  8.         <div id="boxincription" class="maxWidthM bg-compte-white w-11/12 mt-4 mb-8 ml-auto mr-auto text-white">
  9.             {% for message in app.flashes('success') %}
  10.                     <div class="bg-green-100 border border-green-400 text-green-700 text-sm px-4 py-3 rounded relative" role="alert">
  11.                             <span class="block sm:inline">{{ message }}</span>
  12.                     </div>
  13.             {% endfor %}
  14.             <div class="h-fit pb-8 lg:pb-0 pt-10 pl-10 pr-10 lg:pl-10 lg:pr-10 bg-header-lgblue Poppins boxIpuntM" style="min-height:500px; max-width:1000px">
  15.                 <div id="toptitle" class="text-xl font-bold">ACOA</div>
  16.                 <div class="mb-12 text-xs">Votre partenaire Conseil et Formation en Guadeloupe, Martinique et Guyane</div>
  17.                 <div class="text-sm font-bold">Mot de passe oubliĆ©</div>
  18.                 {{ form_start(form) }}
  19.                         <div class="mt-4">
  20.                             <label for="inputEmail">Saisissez votre adresse mail :</label> <br />
  21.                             {{ form_row(form.email.first) }}
  22.                         </div>
  23.                         <div class="">
  24.                             <label for="inputEmail">Confirmez votre adresse mail :</label> <br />
  25.                             {{ form_row(form.email.second) }}
  26.                         </div>
  27.                         <div class="button mt-8">
  28.                             <button style="width:130px" class="buttonM rounded-full text-sm text-center font-bold text-white pt-2 pb-2 w-full"
  29.                                 type="submit">Confirmer</button>
  30.                         </div>
  31.                     {{ form_end(form) }}
  32.             </div>
  33.     
  34.         </div>
  35.     </div>
  36. </div>
  37. {% endblock %}