First Commit

This commit is contained in:
mrtoine 2025-09-12 11:11:44 +02:00
commit ce0758fbbb
496 changed files with 52062 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{% extends 'layout.html' %}
{% block content %}
<div class="container">
<h2>Update Profile</h2>
<form method="post" enctype="multipart/form-data">
{% csrf_token %}
{{ user_form.as_p }}
<button type="submit">Modifier</button>
</form>
</div>
{% endblock %}