cc3fce0b1e1bfa8662a50cc8c5e9b50419ed1a45
[myslice.git] / portal / templates / register_user.html
1 {% extends "layout-unfold1.html" %}
2 {% load i18n %}
3 {% load crispy_forms_tags %}
4
5
6 {% block head %}
7 {{ wizard.form.media }}
8 <link rel="stylesheet" type="text/css" href="{{STATIC_URL}}css/smart_wizard.css" />
9 {% endblock %}
10
11 {% block unfold1_main %}
12
13   <h1>User registration</h1>
14
15 {% if envoi %}Votre message a bien été envoyé !{% endif %}
16  
17 <form action="" method="post">{% csrf_token %}
18 {{ form.as_p }}
19 <input type="submit" value="Submit" />
20 </form>
21
22 {% endblock %}