Contact: Imporved display msg
[myslice.git] / portal / templates / contact.html
1 {% extends "layout-unfold1.html" %}
2
3 {% block head %}
4 {{ wizard.form.media }}
5 {% endblock %}
6
7 {% block unfold_main %}
8
9 <link rel="stylesheet" type="text/css" href="{{STATIC_URL}}/css/onelab.css" />
10 <div class="onelab-title well-lg">
11   <h2>Onelab Support</h2>
12   <h4>If you have any diffculties using the portal, please contact us by filling this form below.</h4>
13   <h4>You can also <a href="mailto:support@myslice.info">e-mail</a> us directly or consult to our <a href="http://trac.myslice.info/" >documentation</a></h4>
14 </div>
15
16 <!-- no hint for this form, moreover we need more space to write stuff down
17      so we use a 3-6-3 layout -->
18 <div class='well'>
19   <form class="cmxform form-horizontal" id="commentForm" action="#" method="post" role="form">{% csrf_token %}
20   <fieldset>
21     {% for field in form %}
22     <div class="form-group">
23       <label for="{{ field.html_name }}" class="col-xs-3 control-label">{{ field.label }}</label>
24       <div class="col-xs-6"> {{ field.errors }} {{ field }} <p class="form-hint">{{ field.help_text }}</p> </div>
25     </div>
26     {% endfor %}
27     <button class="submit btn btn-default col-xs-12" type="submit">Submit to OneLab Support</button>
28   </fieldset>
29   </form>
30 </div>
31 {% endblock %}
32