photo26/accounts/templates/signup.html
aeltheos d8853cee1c changed signup to accounts
finished fixing linting
2021-10-07 16:59:16 +02:00

9 lines
No EOL
219 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>Création d'utilisateur</h1>
<form action="" method="post">{% csrf_token %}
{{ form.as_p }}
<br>
<input type="submit" value="Envoyer">
</form>
{% endblock %}