ernestophone.ens.fr/templates/gestion/registration.html
2015-03-17 19:03:51 +01:00

14 lines
385 B
HTML

{% extends "base.html" %}
{% block titre %}L'Ernestophone - Inscription{% endblock %}
{% block content %}
<h2>Inscription d'un nouvel Ernestophoniste</h2>
<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 %}