mirror of
https://framagit.org/la-chariotte/la-chariotte.git
synced 2025-05-04 04:41:52 +02:00
13 lines
No EOL
244 B
HTML
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 %} |