Open in Web IDE
Quickly and easily edit multiple files in your project.
Edit
Edit this file only.
{% extends "base.html" %}
{% block "content" %}
<h2>Créer un compte</h2>
<form method="post" action="{% url 'accounts:create' %}">
{% csrf_token %}
{{ form.as_html }}
<br>
<input type="submit" value="Valider">
</form>
{% endblock %}