templates/account/forgot-password.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3.     <head>
  4.         <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  5.         <title>Réinitialisation du mot de passe</title>
  6.         <meta content='width=device-width, initial-scale=1.0, shrink-to-fit=no' name='viewport' />
  7.         <link rel="icon" type="image/x-icon" href="/images/favicon-orange.png">
  8.         <link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap" rel="stylesheet"> 
  9.         <link rel="stylesheet" href="/assets/css/dropify.css">
  10.         <!-- CSS Files -->
  11.         <link rel="stylesheet" href="/assets/css/bootstrap.min.css">
  12.         <link rel="stylesheet" href="/assets/css/atlantis.css">
  13.         <!-- CSS Just for demo purpose, don't include it in your project -->
  14.         {# <link rel="stylesheet" href="/assets/css/demo.css"> #}
  15.         
  16.         {% block stylesheets %}{% endblock %}
  17.     </head>
  18.     <body>
  19.         {% if app.user %}
  20.             {% if app.user.team != null %}
  21.                 {% if app.user.team.slug == "h-center" %}
  22.                     {% set color = "orange" %}
  23.                 {% else %}
  24.                     {% set color = "blue2" %}
  25.                 {% endif %}
  26.             {% else %}
  27.                 {% set color = "blue2" %}
  28.             {% endif %}
  29.         {% else %}
  30.             {% set color = "blue2" %}
  31.         {% endif %}
  32.         <div class="wrapper">
  33.             <section class="mt-0 first-section login-section">
  34.                 <div class="container">
  35.                     <div class="row justify-content-center">
  36.                         <div class="col-lg-5 mt-5">
  37.                             <h1 class="page-title text-center">Réinitialisation du mot de passe</h1>
  38.                             <div class="common-card login-card">
  39.                                 <form action="{{ path('forgot_password') }}" method="post">
  40.                                     <p class="text-center">Entrez l’adresse e-mail associée à votre compte, nous vous enverrons par e-mail un lien pour réinitialiser votre mot de passe.</p>
  41.                                     <div class="row">
  42.                                         <div class="col-lg-12">
  43.                                             <div class="form-group">
  44.                                                 <input type="email" id="username" name="forgot_email" class="form-control" required placeholder="Votre email">
  45.                                             </div>
  46.                                         </div>
  47.                                         
  48.                                         <div class="col-md-12 d-flex justify-content-end">
  49.                                             <button name="forgot_submit" class="btn form-btn btn-blue-darker mt-3" type="submit">Envoyer</button>
  50.                                         </div>
  51.                                     </div>
  52.                                 </form>
  53.                             </div>
  54.                         </div>
  55.                     </div>
  56.                 </div>
  57.             </section>
  58.         </div>
  59.         <footer class="footer">
  60.             <div class="container-fluid">
  61.                 <div class="copyright mx-auto">
  62.                     Eyefiz center
  63.                 </div>
  64.             </div>
  65.         </footer>
  66.     </body>
  67. </html>