vendor/stimactiv/admin-light-bundle/templates/security/resetting/request.html.twig line 1

Open in your IDE?
  1. {% extends '@StimactivAdmin/layout.html.twig' %}
  2. {% block title %}Mot de passe oublié | {{ parent() }}{% endblock %}
  3. {% block body %}
  4.     <section class="py-5">
  5.         <div class="container-lg">
  6.             <div class="row text-center justify-content-center">
  7.                 <div class="col-md-6">
  8.                     <div class="bg-light text-dark rounded p-4">
  9.                         <h3 class="text-primary fw-bolder mb-4">
  10.                             MOT DE PASSE OUBLIÉ
  11.                         </h3>
  12.                         {% if form_errors(form) %}
  13.                             {{ form_errors(form) }}
  14.                         {% endif %}
  15.                         {{ form_start(form, {'action': form.vars.action~'?'~get_replay_preventer_token(form.vars.name)}) }}
  16.                             {{ form_rest(form) }}
  17.                             <div class="mt-3 text-center">
  18.                                 <button type="submit" class="btn btn-primary">Valider</button>
  19.                             </div>
  20.                         {{ form_end(form) }}
  21.                     </div>
  22.                 </div>
  23.             </div>
  24.             <div class="text-center mt-3">
  25.                 <a href="{{ path('backend_login') }}" class="fw-bold text-uppercase text-decoration-none">Retour à la page de connexion</a>
  26.             </div>
  27.         </div>
  28.     </section>
  29. {% endblock %}