Add password change and reset functionality with corresponding views and templates

This commit is contained in:
Edgar P. Burkhart 2025-06-15 11:02:35 +02:00
parent a24fb897a3
commit da1c750771
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227
5 changed files with 61 additions and 2 deletions

View file

@ -0,0 +1,8 @@
{% extends "base.html" %}
{% load form %}
{% block content %}
<h1>
<i class="ri-lock-password-line"></i> Changer mon mot de passe
</h1>
{% form form submit="Changer mon mot de passe" %}
{% endblock content %}

View file

@ -0,0 +1,8 @@
{% extends "base.html" %}
{% load form %}
{% block content %}
<h1>
<i class="ri-lock-password-line"></i> Réinitialiser mon mot de passe
</h1>
{% form form submit="Réinitialiser mon mot de passe" %}
{% endblock content %}

View file

@ -0,0 +1,8 @@
{% extends "base.html" %}
{% load form %}
{% block content %}
<h1>
<i class="ri-lock-password-line"></i> Réinitialiser mon mot de passe
</h1>
{% form form submit="Réinitialiser mon mot de passe" %}
{% endblock content %}