col-xs-offset-* classes are missing in bootstrap-3.0.0 so use md instead for now...
[myslice.git] / portal / templates / contact.html
1 {% extends "layout-unfold1.html" %}
2
3 {% block head %}
4 {{ wizard.form.media }}
5 {% endblock %}
6
7 {% block unfold1_main %}
8
9 <link rel="stylesheet" type="text/css" href="{{STATIC_URL}}/css/onelab.css" />
10 <div class="onelab-title well well-lg">
11   <h2>Onelab Support</h2>
12   <h4>If you have already registered, then please <a href="mailto:support@myslice.info">send an e-mail</a>
13   or <a href="http://trac.myslice.info/" >visit us</a></h4>
14 </div>
15
16 <div class='well'>
17   <form class="cmxform form-horizontal" id="commentForm" action="#" method="post" role="form">{% csrf_token %}
18   <fieldset>
19     {% for field in form %}
20     <div class="form-group">
21       <label for="{{ field.html_name }}" class="col-xs-4 control-label">{{ field.label }}</label>
22       <div class="col-xs-4"> {{ field.errors }} {{ field }} <p class="form-hint">{{ field.help_text }}</p> </div>
23     </div>
24     {% endfor %}
25     <button class="submit btn btn-default col-md-offset-4 col-xs-4" type="submit">Send to Support</button>
26   </fieldset>
27   </form>
28 </div>
29 {% endblock %}
30