Skip to content
Snippets Groups Projects
update.html 482 B
Newer Older
{% extends "base.html" %}

{% block "content" %}
	<h2>Changer mes informations</h2>

	<form method="post" action="{% url 'accounts:update' %}">
		{% csrf_token %}
		{{ update_form.as_html }}
		<br>
Dorian Lesbre's avatar
Dorian Lesbre committed
		<div class="flex">
			<input type="submit" value="Valider">
			<a class="button" href="{% url 'profile' %}">Annuler</a>
Dorian Lesbre's avatar
Dorian Lesbre committed
		</div>
	</form>
	<h2> Mot de Passe </h2>
	<a href ="{% url 'account_reset_password'% }" rel="text/html"> Réinitialisez votre mot de passe. </a>
{% endblock %}