14 lines
385 B
HTML
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 %}
|