{% extends "withoutnav_template.html" %} {% from "components/textbox.html" import textbox %} {% from "components/page-footer.html" import page_footer %} {% block per_page_title %} Ask a question or give feedback {% endblock %} {% block maincolumn_content %}

Ask a question or give feedback

{{ textbox(form.feedback, width='1-1', hint='', rows=10) }} {% if not current_user.is_authenticated %}

Do you want a reply?

Leave your details below if you'd like a response.

{{ textbox(form.name, width='1-1') }} {{ textbox(form.email_address, width='1-1') }} {% else %}

We’ll reply to {{ current_user.email_address }}

{% endif %} {{ page_footer( 'Send', secondary_link=url_for('.support'), secondary_link_text='Back to support', ) }}
{% endblock %}