photo26/signup/templates/signup.html

9 lines
No EOL
221 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 %}