layout and style changes
[myslice.git] / portal / templates / user_register.html
1 {% extends "layout.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 content %}
9
10 <div class="row">
11         <h1><img src="{{ STATIC_URL }}img/icon_user_small.png" alt="User Registration" /> OneLab Experimenter Registration</h1>
12 </div>
13 <div class="row">
14
15 {% if envoi %}
16         <h3>Your registration message has been sent !</h3>
17 {% endif %}
18          
19         <form enctype="multipart/form-data" action="" method="post">{% csrf_token %}
20         {{ form.as_p }}
21         <input type="submit" value="Submit" />
22         </form>
23 </div>
24
25 {% endblock %}