13 lines
No EOL
508 B
HTML
13 lines
No EOL
508 B
HTML
<!-- templates/users/complete_profile.html -->
|
|
{% extends 'layout.html' %}
|
|
{% block content %}
|
|
<section class="form-section">
|
|
<h2>Complète ton profil</h2>
|
|
<p>La nouvelle mise à jour du site web te permet d'avoir un profil personnel. Tu peux remplir les champs suivant pour l'activer.</p>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button type="submit" class="btn-submit">Save</button>
|
|
</form>
|
|
</section>
|
|
{% endblock %} |