Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / im / feedback.html @ 835e2ee3

History | View | Annotate | Download (792 Bytes)

1
{% extends "im/account_base.html" %}
2

    
3
{% block body %}
4
<h2>CONTACT US </h2>
5
<p>If you would like to contact us for any reason, please feel free to 
6
write <br>your message in the following form. Feedback and suggestions are<br>
7
also highly appreciated. </p>
8
<form action="{% url feedback %}" method="post"
9
    class="withlabels">{% csrf_token %}
10
    
11
    {% with feedback_form as form %}
12
    {% include "im/form_render.html" %}
13
    {% endwith %}
14
    
15
    <div class="form-row submit">
16
        <input type="hidden" name="next" value="{{ next }}">
17
        <input type="hidden" name="auth" value="{{ user.auth_token }}">
18
            <input type="hidden" name="username" value="{{ username }}">
19
        <input type="submit" class="submit altcol" value="SEND" />
20
    </div>
21
  
22
</form>
23
{% endblock body %}