2016-04-19 13:51:16 +01:00
|
|
|
|
{% extends "withoutnav_template.html" %}
|
2016-12-12 11:44:11 +00:00
|
|
|
|
{% from "components/checkbox.html" import checkbox %}
|
2016-04-19 13:51:16 +01:00
|
|
|
|
{% from "components/textbox.html" import textbox %}
|
|
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
2018-09-19 12:39:36 +01:00
|
|
|
|
{% from "components/form.html" import form_wrapper %}
|
2016-04-19 13:51:16 +01:00
|
|
|
|
|
2017-02-13 10:45:15 +00:00
|
|
|
|
{% block per_page_title %}
|
|
|
|
|
|
Report a problem
|
2016-04-19 13:51:16 +01:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
|
|
|
|
|
|
<h1 class="heading-large">
|
2016-12-12 11:25:43 +00:00
|
|
|
|
Report a problem
|
2016-04-19 13:51:16 +01:00
|
|
|
|
</h1>
|
|
|
|
|
|
<div class="grid-row">
|
|
|
|
|
|
<div class="column-two-thirds">
|
2016-11-21 11:25:57 +00:00
|
|
|
|
<div class="panel panel-border-wide">
|
|
|
|
|
|
<p>
|
2016-12-12 11:25:43 +00:00
|
|
|
|
Check our <a href="https://status.notifications.service.gov.uk">system status</a>
|
2016-11-21 11:25:57 +00:00
|
|
|
|
page to see if there are any known issues with GOV.UK Notify.
|
|
|
|
|
|
</p>
|
|
|
|
|
|
</div>
|
2018-09-19 12:39:36 +01:00
|
|
|
|
{% call form_wrapper() %}
|
2016-04-19 13:51:16 +01:00
|
|
|
|
{{ textbox(form.feedback, width='1-1', hint='', rows=10) }}
|
2016-12-12 11:31:26 +00:00
|
|
|
|
{% if not current_user.is_authenticated %}
|
|
|
|
|
|
{{ textbox(form.name, width='1-1') }}
|
|
|
|
|
|
{{ textbox(form.email_address, width='1-1') }}
|
|
|
|
|
|
{% else %}
|
|
|
|
|
|
<p>We’ll reply to {{ current_user.email_address }}</p>
|
|
|
|
|
|
{% endif %}
|
2016-12-12 11:25:43 +00:00
|
|
|
|
{{ page_footer(
|
|
|
|
|
|
'Send',
|
|
|
|
|
|
secondary_link=url_for('.support'),
|
|
|
|
|
|
secondary_link_text='Back to support',
|
|
|
|
|
|
) }}
|
2018-09-19 12:39:36 +01:00
|
|
|
|
{% endcall %}
|
2016-04-19 13:51:16 +01:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2016-11-21 11:25:57 +00:00
|
|
|
|
{% endblock %}
|