templates/reset_password/request.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.     <!--begin::Head-->
  4.     <head>
  5.         <head><base href="../../../"/>
  6.         <title>Reset Password</title>
  7.         <meta charset="utf-8" />
  8.         <meta name="description" content="The most advanced Bootstrap Admin Theme on Themeforest trusted by 100,000 beginners and professionals. Multi-demo, Dark Mode, RTL support and complete React, Angular, Vue, Asp.Net Core, Rails, Spring, Blazor, Django, Flask & Laravel versions. Grab your copy now and get life-time updates for free." />
  9.         
  10.         <link rel="shortcut icon" href="/assets/media/logos/LogoCard.png" />
  11.         <!--begin::Fonts(mandatory for all pages)-->
  12.         <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inter:300,400,500,600,700" />
  13.         <!--end::Fonts-->
  14.         <!--begin::Global Stylesheets Bundle(mandatory for all pages)-->
  15.         <link href="assets/plugins/global/plugins.bundle.css" rel="stylesheet" type="text/css" />
  16.         <link href="assets/css/style.bundle.css" rel="stylesheet" type="text/css" />
  17.     </head>
  18.     <!--end::Head-->
  19.     <!--begin::Body-->
  20.     <body id="kt_body" class="app-blank app-blank">
  21.         <!-- ... (rest of the body content) ... -->
  22.         <div class="d-flex flex-column flex-root" id="kt_app_root">
  23.             <!--begin::Authentication - Password reset -->
  24.             <div class="d-flex flex-column flex-lg-row flex-column-fluid">
  25.                 <!-- ... (rest of the content) ... -->
  26.                 <div class="d-flex flex-column flex-lg-row-fluid w-lg-50 p-10 order-2 order-lg-1">
  27.                     <!-- ... (rest of the content) ... -->
  28.                     <!--begin::Form-->
  29.                     <div class="d-flex flex-center flex-column flex-lg-row-fluid">
  30.                     
  31.                                     <div class="me-2" style="display: inline-flex; gap:10px;">
  32.                                     {% for locale in locales  %}
  33.                                         {% if locale != app.request.locale %}
  34.                                             <a class="nav-link" href="{{ path('change_locale', {'locale': locale }) }}">
  35.                                                 <img src="/assets/langue_icons/{{ locale }}.png" style="width: 40px;" alt="{{ locale }}">
  36.                                             </a>
  37.                                         {% endif %}
  38.                                     {% endfor %}
  39.                                     </br>
  40.                                 </div>
  41.                         <!-- ... (rest of the content) ... -->
  42.                         <!--begin::Wrapper-->
  43.                         <div class="w-lg-500px p-10">
  44.                             {% for flash_error in app.flashes('reset_password_error') %}
  45.                                 <div class="alert alert-danger" role="alert">{{ flash_error }}</div>
  46.                             {% endfor %}
  47.                             <form class="form w-100" method="post" action="{{ path('app_forgot_password_request') }}">
  48.                                 {{ form_start(requestForm) }}
  49.                                 <div class="text-center mb-10">
  50.                                     <h1 class="text-dark fw-bolder mb-3">{% trans %}Mot de passe oublié ?{% endtrans %}</h1>
  51.                                     <div class="text-gray-500 fw-semibold fs-6">{% trans %}Saisissez votre email pour réinitialiser votre mot de passe.{% endtrans %}</div>
  52.                                 </div>
  53.                                 <div class="fv-row mb-8">
  54.                                     {{ form_widget(requestForm.email, {'attr': {'class': 'form-control bg-transparent'}}) }}
  55.                                 </div>
  56.                                 <div>
  57.                                     <small>{% trans %}Saisissez votre adresse électronique et nous vous enverrons un lien pour réinitialiser votre mot de passe.{% endtrans %}</small>
  58.                                 </div>
  59.                                 </br></br>
  60.                                 <div class="d-flex flex-wrap justify-content-center pb-lg-0">
  61.                                     <button class="btn btn-primary">{% trans %}Envoyer {% endtrans %}</button>
  62.                                 </div>
  63.                                 {{ form_end(requestForm) }}
  64.                             </form>
  65.                         </div>
  66.                     </div>
  67.                 </div>
  68.                 <div class="d-flex flex-lg-row-fluid w-lg-50 bgi-size-cover bgi-position-center order-1 order-lg-2" style="background-image: url(/assets/media/logos/LogoInscription.png)">
  69.                     
  70.                 </div>
  71.             </div>
  72.             <!--end::Authentication - Password reset-->
  73.         </div>
  74.         <script>var hostUrl = "assets/";</script>
  75.         <script src="assets/plugins/global/plugins.bundle.js"></script>
  76.         <script src="assets/js/scripts.bundle.js"></script>
  77.         <script src="assets/js/custom/authentication/reset-password/reset-password.js"></script>
  78.     </body>
  79. </html>