Forked from Dorian Lesbre / Site Interludes
439 commits behind the upstream repository.
create_account.html 247 bytes
{% 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 %}