layout and style changes
[myslice.git] / portal / templates / user_register.html
index bfb08f1..a1295c1 100644 (file)
@@ -1,21 +1,25 @@
-{% extends "layout-unfold1.html" %}
+{% extends "layout.html" %}
 
 {% block head %}
 {{ wizard.form.media }}
 <link rel="stylesheet" type="text/css" href="{{STATIC_URL}}css/smart_wizard.css" />
 {% endblock %}
 
-{% block unfold_main %}
+{% block content %}
 
-  <h1>User registration</h1>
+<div class="row">
+       <h1><img src="{{ STATIC_URL }}img/icon_user_small.png" alt="User Registration" /> OneLab Experimenter Registration</h1>
+</div>
+<div class="row">
 
-{% if envoi %}Your registration message has been sent !{% endif %}
-<div class='well'>
-<form enctype="multipart/form-data" action="" method="post">{% csrf_token %}
-{{ form.as_p }}
-<input type="submit" value="Submit" />
-</form>
+{% if envoi %}
+       <h3>Your registration message has been sent !</h3>
+{% endif %}
+        
+       <form enctype="multipart/form-data" action="" method="post">{% csrf_token %}
+       {{ form.as_p }}
+       <input type="submit" value="Submit" />
+       </form>
 </div>
 
 {% endblock %}