Initial commit
This commit is contained in:
18
app/templates/pages/password_link_form.html.j2
Normal file
18
app/templates/pages/password_link_form.html.j2
Normal file
@@ -0,0 +1,18 @@
|
||||
{% 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 %}
|
||||
Reference in New Issue
Block a user