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