partirdezero/templates/users/complete_profile.html

15 lines
No EOL
595 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" class="form">
{% csrf_token %}
{{ form.as_p }}
<div class="form-actions">
<button type="submit" class="btn btn-primary">Enregistrer</button>
</div>
</form>
</section>
{% endblock %}