various cleanups and tweaks
[myslice.git] / portal / templates / user_register.html
1 {% extends "layout-unfold1.html" %}
2
3 {% block head %}
4 {{ wizard.form.media }}
5 <link rel="stylesheet" type="text/css" href="{{STATIC_URL}}css/smart_wizard.css" />
6 {% endblock %}
7
8 {% block unfold1_main %}
9
10   <h1>User registration</h1>
11
12 {% if envoi %}Your registration message has been sent !{% endif %}
13  
14 <div class='well'>
15 <form enctype="multipart/form-data" action="" method="post">{% csrf_token %}
16 {{ form.as_p }}
17 <input type="submit" value="Submit" />
18 </form>
19 </div>
20
21 {% endblock %}