templates/reset_password/request.html.twig line 1

Open in your IDE?
  1. <html class="fixed">
  2.     <head>
  3.         <meta charset="UTF-8">
  4.         <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
  5.         <link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800|Shadows+Into+Light" rel="stylesheet" type="text/css">
  6.         {{ encore_entry_link_tags('app') }}
  7.         {% block stylesheets %}
  8.         {% endblock %}
  9.     </head>
  10.     <body>
  11.         {% for flash_error in app.flashes('reset_password_error') %}
  12.             <div class="alert alert-danger" role="alert">{{ flash_error }}</div>
  13.         {% endfor %}
  14.         <section class="body-sign">
  15.             <div class="center-sign">
  16.                 <a href="/" class="logo float-left">
  17.                     <img src="{{ asset('build/images/logo.png') }}" height="70" />
  18.                 </a>
  19.                 <div class="panel card-sign">
  20.                     <div class="card-title-sign mt-3 text-end">
  21.                         <h2 class="title text-uppercase font-weight-bold m-0"><i class="bx bx-user-circle me-1 text-6 position-relative top-5"></i> Mot de passe </h2>
  22.                     </div>
  23.                     <div class="card-body">
  24.                
  25.                             <div class="form-group mb-3">
  26.                                 {% for flash_error in app.flashes('reset_password_error') %}
  27.                                     <div class="alert alert-danger" role="alert">{{ flash_error }}</div>
  28.                                 {% endfor %}
  29.                                 <h1>Initialize mot de passe</h1>
  30.                                 {{ form_start(requestForm) }}
  31.                                 {{ form_row(requestForm.emailCompte) }}
  32.                                 <div>
  33.                                     <small>
  34.                                         Enter votre adresse mail
  35.                                     </small>
  36.                                 </div>
  37.                                 <button class="btn btn-primary">Envoyer</button>
  38.                                 {{ form_end(requestForm) }}
  39.                      </div>
  40.                 </div>
  41.             </div>
  42.         </section>