templates/security/forgotPassword.html.twig line 1

  1. {% extends 'base.html.twig' %}
  2. {% block title %}Login{% endblock %}
  3. {% block body %}
  4. <div id="layoutAuthentication">
  5.     <div id="layoutAuthentication_content">
  6.         <main>
  7.             <div class="container-xl px-4">
  8.                 <div class="row justify-content-center">
  9.                     <div class="col-lg-5">
  10.                         <!-- Basic forgot password form-->
  11.                         <div class="card shadow-lg border-0 rounded-lg mt-5">
  12.                             <div class="card-header justify-content-center">
  13.                                 <h3 class="fw-light my-4">Mot de passe oublié</h3>
  14.                             </div>
  15.                             <div class="card-body">
  16.                                 <div class="small mb-3 text-muted">Pour recevoir votre mot de passe par email, saisissez
  17.                                     votre identifiant</div>
  18.                                 <!-- Forgot password form-->
  19.                                 {{ form_start(passwordForm) }}
  20.                                 <div class="mb-3">
  21.                                     {{ form_row(passwordForm.login, {
  22.                                         label: 'Login'
  23.                                     }) }}
  24.                                 </div>
  25.                                 <!-- Form Group (submit options)-->
  26.                                 <div class="d-flex align-items-center justify-content-between mt-4 mb-0">
  27.                                     <a class="small" href="{{ path('app_login') }}">Retourner à la connexion</a>
  28.                                     <button class="btn btn-primary" type="submit">Envoyer</button>
  29.                                 </div>
  30.                                 {{ form_end(passwordForm) }}
  31.                             </div>
  32.                         </div>
  33.                     </div>
  34.                 </div>
  35.             </div>
  36.         </main>
  37.     </div>
  38.     <div id="layoutAuthentication_footer">
  39.         <footer class="footer-admin mt-auto footer-dark">
  40.             <div class="container-xl px-4">
  41.                 <div class="row">
  42.                     <div class="col-md-6 small">Copyright &copy; Your Website 2021</div>
  43.                     <div class="col-md-6 text-md-end small">
  44.                         <a href="#!">Privacy Policy</a>
  45.                         &middot;
  46.                         <a href="#!">Terms &amp; Conditions</a>
  47.                     </div>
  48.                 </div>
  49.             </div>
  50.         </footer>
  51.     </div>
  52. </div>
  53. <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/js/bootstrap.bundle.min.js"
  54.     crossorigin="anonymous"></script>
  55. <script src="js/scripts.js"></script>
  56. </body>
  57. {% endblock %}