21 lines
603 B
HTML
21 lines
603 B
HTML
|
{% extends "base.html" %}
|
||
|
{% block titre %}Modification du profil{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h2>Modification du profil</h2>
|
||
|
{% if error %}
|
||
|
<p>{{ error }}</p>
|
||
|
{% endif %}
|
||
|
{% if success %}
|
||
|
<p>Changements enregistrés !</p>
|
||
|
{% endif %}
|
||
|
<p><a href="{% url "gestion.views.change_password" %}">Changer mon mot de passe</a></p>
|
||
|
<p><a href="{% url "calendrier.views.changename" %}">Changer mon nom pour les doodles</a></p>
|
||
|
<form action="{% url 'gestion.views.change_membre' %}" method="post">
|
||
|
{% csrf_token %}
|
||
|
{{ form.as_p }}
|
||
|
<input type="submit" value="Valider" />
|
||
|
</form>
|
||
|
|
||
|
{% endblock %}
|