Activer reset du mot de passe

This commit is contained in:
Claude Paroz 2025-08-27 19:52:26 +02:00
parent cf17495076
commit 086b12ef79
6 changed files with 119 additions and 3 deletions

View file

@ -0,0 +1,17 @@
{% extends "base.html" %}
{% load i18n %}
{% block breadcrumbs %}
<div class="breadcrumbs">
<a href="{% url 'admin:index' %}">{% translate 'Home' %}</a>
&rsaquo; {% translate 'Password reset' %}
</div>
{% endblock %}
{% block content %}
<p>{% translate "Your password has been set. You may go ahead and log in now." %}</p>
<p><a href="{{ login_url }}">{% translate 'Log in' %}</a></p>
{% endblock %}