mirror of
https://framagit.org/la-chariotte/la-chariotte.git
synced 2025-05-03 12:21:52 +02:00
15 lines
No EOL
354 B
HTML
15 lines
No EOL
354 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}Créer un compte{% endblock %}
|
|
|
|
{% block content %}
|
|
<p class="desktop-hidden mobile-content-title">
|
|
{% block content_title %}Créer un compte{% endblock %}
|
|
</p>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button class="button is-primary" type="submit">Valider</button>
|
|
</form>
|
|
|
|
{% endblock %} |