Newer
Older
{% extends "base.html" %}
{% block "content" %}
<h2>Changer mes informations</h2>
<form method="post" action="{% url 'accounts:update' %}">
{% csrf_token %}
{{ form.as_html }}
<br>
<input type="submit" value="Valider">
</form>
{% endblock %}