templates/user/forgot.html.twig line 1

Open in your IDE?
  1. {% extends 'security/base_login.html.twig' %}
  2. {% block title %}Log in!
  3. {% endblock %}
  4. {% block stylesheets %}
  5.     <style>
  6.     /********** Template CSS **********/:root
  7.     {
  8.         --primary: #3f38f2;
  9.         --light: #fff;
  10.         --dark: #191C24;
  11.     }
  12.     ::placeholder {
  13.         color: #a3a3a3 !important;
  14.         font-style: italic;
  15.     }
  16.     .form-control {
  17.         font-size: 20px;
  18.         height: 70px !important;
  19.         border-radius: 0;
  20.         transition: 0.5s;
  21.         padding-left: 3% !important;
  22.         border: none !important;
  23.         border-left: 20px solid transparent !important;
  24.         outline: 1px solid #757575;
  25.     }
  26.     .form-control:focus {
  27.         outline: 1px solid #757575;
  28.         border-left: 20px solid var(--primary) !important;
  29.         box-shadow: none;
  30.     }
  31. </style>{% endblock %}{% block body %}
  32. <div class="row h-100">
  33.     <div class="bg-primary col-lg-6 col-12 pt-lg-5 pt-3">
  34.         <h1 class="d-none d-lg-block text-center mb-3 font-weight-normal text-white" style="font-size:60px">||
  35.             <br>
  36.             InteGraal</h1>
  37.         <h1 class="d-lg-none d-block text-center mb-3 font-weight-normal text-white" style="font-size:30px">||
  38.             <br>
  39.             InteGraal</h1>
  40.     </div>
  41.     <div class="col-lg-6 col-12 align-self-center p-5">
  42.         <p class="fs-5">
  43.             Pour réinitialiser votre mot de passe, saisissez l'adresse email que vous utilisez pour vous connecter à votre compte Integraal.
  44.         </p>
  45.         <form action="{{ path('user.forgotPassword')}}" method="POST">
  46.             <input type="hidden" name="_token" value="{{ csrf_token('reset-pwd') }}">
  47.             <input type="email" name="email" id="email-restaure-pwd" class="form-control" placeholder="Saisissez votre adresse email" autocomplete="off">
  48.             <div class="text-center">
  49.                 <button class="btn btn-lg btn-primary rounded-pill px-5 py-3 align-self-center mt-4">Continuer</button>
  50.             </div>
  51.         </form>
  52.     </div>
  53. </div>{% endblock %}