You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.1 KiB
30 lines
1.1 KiB
{% extends 'tournaments/base.html' %}
|
|
{% block head_title %} Réinitialisation du mot de passe {% endblock %}
|
|
{% block first_title %} Padel Club {% endblock %}
|
|
{% block second_title %} Réinitialisation du mot de passe {% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="grid-x">
|
|
<div class="bubble">
|
|
<div class="cell medium-6 large-6 my-block">
|
|
<!-- Add non-field errors (if any) -->
|
|
{% if form.non_field_errors %}
|
|
<div class="alert">
|
|
{% for error in form.non_field_errors %}
|
|
<p>{{ error }}</p>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
<form method="post" action="{% url 'password_reset' %}">
|
|
{% csrf_token %}
|
|
<label for="email">Adresse e-mail :</label>
|
|
<input type="email" name="email" id="email" required>
|
|
<button type="submit" class="rounded-button">Envoyer le lien de réinitialisation</button>
|
|
</form>
|
|
<div class="topmargin20">
|
|
<a href="{% url 'login' %}" class="styled-link">Retour à la connexion</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|