various cleanups and tweaks
[myslice.git] / portal / templates / slice_request.html
1 {% extends "layout-unfold1.html" %}
2 {% load i18n %}
3
4 {% block head %}
5 {{ wizard.form.media }}
6 {% endblock %}
7
8 {% block unfold1_main %}
9
10 <link rel="stylesheet" type="text/css" href="{{STATIC_URL}}/css/onelab.css" />
11 <!-- xxx ideally only onelab.css but ... xxx -->
12 <link rel="stylesheet" type="text/css" href="{{STATIC_URL}}/css/registration.css" />
13
14 <div class="onelab-title well well-lg">
15   <h2>Request a Slice</h2>
16 </div>
17
18 <div class='well'>
19 <form id="commentForm" action="" method="post">{% csrf_token %}
20 {{ form.as_p }}
21 <input class="btn" type="submit" value="Submit" />
22 </form>
23 </div>
24
25 {% endblock %}