templates/pages/auth/reset-password.html.twig line 1
{% extends "#{theme.getParameter('KT_THEME_LAYOUT_DIR')}/_auth.html.twig" %}
{% block page_title %}Reset Password{% endblock %}
{% block content %}
<!--begin::Form-->
<form class="form w-100" novalidate="novalidate" id="kt_password_reset_form" data-kt-redirect-url="/new-password" action="#">
<!--begin::Heading-->
<div class="text-center mb-10">
<!--begin::Title-->
<h1 class="text-gray-900 fw-bolder mb-3">
Réinitialisation de mot de passe
</h1>
<!--end::Title-->
<!--begin::Link-->
<div class="text-gray-500 fw-semibold fs-6">
Entrez l'adresse email associée au compte pour réinitialiser le mot de passe
</div>
<!--end::Link-->
</div>
<!--begin::Heading-->
<!--begin::Input group--->
<div class="fv-row mb-8">
<!--begin::Email-->
<div class="form-floating">
<input type="text" placeholder="Email" name="email" id="email" autocomplete="off" class="form-control bg-transparent"/>
<label for="email"> E-mail</label>
</div>
<!--end::Email-->
</div>
<!--begin::Actions-->
<div class="d-flex flex-wrap justify-content-center pb-lg-0">
<button type="button" id="kt_password_reset_submit" class="btn btn-sm btn-light-primary me-4">
{% include 'partials/general/_button-indicator.html.twig' with {label: 'Soumettre'} %}
</button>
<a href="{{ path('app_login') }}" class="btn btn-sm btn-light-instagram">Annuler</a>
</div>
<!--end::Actions-->
</form>
<!--end::Form-->
{% endblock %}