F4f Review changes
[unfold.git] / portal / templates / fed4fire / fed4fire_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         <div class="col-md-12">
10         <h1><img src="{{ STATIC_URL }}icons/support-xs.png" alt="Open a Ticket" />Contact us</h1>
11         </div>
12 </div>
13 <div class="row">
14         <div class="col-md-12">&nbsp;</div>
15 </div>
16 <div class="row">
17         <div class="col-md-12">
18         <p>     Please check our <a href="http://doc.fed4fire.eu" target="_blank">documentation.</a> 
19                 Most of the basic problems are explained there. 
20         </p>
21         <p>
22                 If you have problems using the portal, please check our <a href="/portal/support">FAQ</a> section.
23         </p>    
24         <p>
25                 If you haven't find your answes in the FAQ, please contact us by filling the form below.<br />
26                 You can also <a href="mailto:contact@fed4fire.eu">e-mail</a> us directly.
27         </p>
28
29         </div>
30 </div>
31
32 <div class="row">
33         <div class="col-md-4">
34                 <form role="form" method="post">
35                 {% csrf_token %}
36                 {% for field in form %}
37             <div class="form-group">
38                 <label for="{{ field.html_name }}" class="control-label">{{ field.label }}</label>
39                 {{ field.errors }} {{ field }}
40             </div>
41             {% endfor %}
42                 <button type="submit" class="btn btn-primary">Submit</button>
43                 </form>
44         </div>
45 </div>
46 {% endblock %}
47