This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
portail-citoyen2/portail_citoyen/templates/registration/password_change_form.html

21 lines
363 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block title %}
{% trans "Changing password" %}
{% endblock %}
{% block content %}
<div id="real-content">
<div class="block">
<h2>Modification du mot de passe</h2>
<form method="post" action=".">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Valider" />
</form>
</div>
</div>
{% endblock %}