11 lines
No EOL
315 B
HTML
11 lines
No EOL
315 B
HTML
{% extends 'layout.html' %}
|
|
{% block content %}
|
|
<section>
|
|
<h2>Update Profile</h2>
|
|
<form method="post" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
{{ profile_form.as_p }}
|
|
<button type="submit">Modifier</button>
|
|
</form>
|
|
</section>
|
|
{% endblock %} |