la-chariotte/la_chariotte/accounts/templates/registration/signup.html
2023-04-19 18:13:08 +02:00

13 lines
No EOL
244 B
HTML

{% extends 'base.html' %}
{% block title %}Créer un compte{% endblock %}
{% block content %}
<h2>Créer un compte</h2>
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<button type="submit">Valider</button>
</form>
{% endblock %}