layout and style changes
[myslice.git] / portal / templates / contact.html
1 {% extends "layout.html" %}
2
3 {% block head %}
4 {{ wizard.form.media }}
5 {% endblock %}
6
7 {% block content %}
8 <div class="row">
9         <h1><img src="{{ STATIC_URL }}img/icon_support_small.png" alt="Open a Ticket" /> OneLab Support</h1>
10 </div>
11 <div class="row">
12         <p>
13         If you have any diffculties using the portal, please contact us by filling this form below.<br />
14         You can also <a href="mailto:support@myslice.info">e-mail</a> us directly or consult to our <a target="_blank" href="http://trac.myslice.info/" >documentation</a>
15         </p>
16 </div>
17
18 <div class="row">
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     <div class="col-xs-5">
28     </div>
29     <button class="submit btn btn-default col-xs-2" type="submit">Create Ticket</button>
30   </fieldset>
31   </form>
32 </div>
33 {% endblock %}
34