homeview and platformsview now use layout-unfold1 or layout-unfold2 depending on...
[myslice.git] / portal / templates / user_register.html
index 4c73075..bfb08f1 100644 (file)
@@ -1,20 +1,21 @@
 {% extends "layout-unfold1.html" %}
-{% load i18n %}
 
 {% block head %}
 {{ wizard.form.media }}
 <link rel="stylesheet" type="text/css" href="{{STATIC_URL}}css/smart_wizard.css" />
 {% endblock %}
 
-{% block unfold1_main %}
+{% block unfold_main %}
 
   <h1>User registration</h1>
 
-{% if envoi %}Votre message a bien été envoyé !{% endif %}
+{% if envoi %}Your registration message has been sent !{% endif %}
  
-<form action="" method="post">{% csrf_token %}
+<div class='well'>
+<form enctype="multipart/form-data" action="" method="post">{% csrf_token %}
 {{ form.as_p }}
 <input type="submit" value="Submit" />
 </form>
+</div>
 
 {% endblock %}