18 lines
955 B
Django/Jinja
18 lines
955 B
Django/Jinja
{% extends 'pages/base.html.j2' %}
|
|
|
|
{% set title = "Réinitialiser mon mot de passe" %}
|
|
|
|
{% block content %}
|
|
<div>
|
|
<p class="mb-5">Remplissez le formulaire ci-dessous pour retrouver votre identifiant pour les services numérique du campus de Fontainebleau</p>
|
|
|
|
<form method="POST">
|
|
<div class="mb-5">
|
|
<label class="block mb-2 text-sm font-medium text-gray-900" for="login">Identifiant</label>
|
|
<input type="text" name="login" id="login" class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5" required>
|
|
<a class="text-blue-600 hover:underline text-sm" href="{{ url_for('mdp.lost_login') }}">J'ai perdu mon identifiant</a>
|
|
</div>
|
|
<button class="text-white bg-red-600 hover:bg-red-700 font-medium rounded-lg text-sm w-full sm:w-auto px-5 py-2.5 text-center" type="submit">Continuer</button>
|
|
</form>
|
|
</div>
|
|
{% endblock %} |