tweaked the contact view for bootstrap3
[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-md-4 control-label">{{ field.label }}</label>
22     <div class="col-md-4">
23 <!--      <input type="{{ field.my_html_type }}" name="{{ field.html_name }}" 
24              class="required form-control" value="{{ field.value }}" 
25              placeholder="{{ field.label }}" /> -->
26           {{ field }} <p class="hint">{{ field.help_text }}</p>
27     </div>
28   </div>
29 {% endfor %}
30 <div class="col-md-offset-4 col-md-4">
31   <button class="submit btn btn-default" type="submit">Submit</button>
32 </div>
33 </fieldset>
34 </form>
35 </div>
36 {% endblock %}
37