first draft of a registration form + email
[myslice.git] / portal / templates / slice_request.html
diff --git a/portal/templates/slice_request.html b/portal/templates/slice_request.html
new file mode 100644 (file)
index 0000000..01f48d0
--- /dev/null
@@ -0,0 +1,20 @@
+{% 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 %}
+
+  <h1>Slice request</h1>
+
+{% if envoi %}Votre message a bien été envoyé !{% endif %}
+<form action="" method="post">{% csrf_token %}
+{{ form.as_p }}
+<input type="submit" value="Submit" />
+</form>
+
+{% endblock %}