ernestophone.ens.fr/templates/gestion/registration.html

17 lines
431 B
HTML

{% extends "base.html" %}
{% block titre %}L'Ernestophone - Inscription{% endblock %}
{% block content %}
<h2>Inscription d'un nouvel Ernestophoniste</h2>
{% if error %}
<p>{{ error }}</p>
{% endif %}
<form action="{% url 'gestion.views.inscription_membre' %}" method="post">
{% csrf_token %}
{{ user_form.as_p }}
{{ comp_form.as_p }}
<input type="submit" value="Valider l'inscription" />
</form>
{% endblock %}