2016-12-12 11:44:11 +00:00
|
|
|
|
{% extends "withoutnav_template.html" %}
|
|
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
2020-03-25 11:56:47 +00:00
|
|
|
|
{% from "components/page-header.html" import page_header %}
|
2023-08-30 11:07:38 -04:00
|
|
|
|
{% from "components/components/back-link/macro.njk" import usaBackLink %}
|
2016-12-12 11:44:11 +00:00
|
|
|
|
|
2017-02-13 10:45:15 +00:00
|
|
|
|
{% block per_page_title %}
|
|
|
|
|
|
Out of hours emergencies
|
2016-12-12 11:44:11 +00:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
2021-07-30 18:23:12 +01:00
|
|
|
|
{% block backLink %}
|
2023-08-30 11:07:38 -04:00
|
|
|
|
{{ usaBackLink({ "href": url_for('.support') }) }}
|
2021-07-30 18:23:12 +01:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
2016-12-12 11:44:11 +00:00
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
|
2021-07-30 18:23:12 +01:00
|
|
|
|
{{ page_header('Out of hours emergencies')}}
|
2023-08-23 16:18:25 -04:00
|
|
|
|
<div class="grid-row">
|
|
|
|
|
|
<div class="grid-col-8">
|
2023-06-06 15:28:24 -04:00
|
|
|
|
<p>
|
2016-12-12 11:44:11 +00:00
|
|
|
|
First, check the
|
2023-08-08 16:19:17 -04:00
|
|
|
|
<a class="usa-link" href="https://status.notifications.service.gov.uk">system status page</a>.
|
2019-09-13 10:25:16 +01:00
|
|
|
|
You do not need to contact us if
|
2016-12-12 11:44:11 +00:00
|
|
|
|
the problem you’re having is listed on that page.
|
|
|
|
|
|
</p>
|
2023-06-06 15:28:24 -04:00
|
|
|
|
<p>
|
2016-12-12 11:44:11 +00:00
|
|
|
|
Otherwise, contact us using the emergency email address we
|
|
|
|
|
|
gave you or your service manager when we made your service live.
|
|
|
|
|
|
</p>
|
2023-06-06 15:28:24 -04:00
|
|
|
|
<p>
|
2016-12-12 11:44:11 +00:00
|
|
|
|
We’ll reply within 30 minutes and give you hourly updates
|
|
|
|
|
|
until the problem’s fixed.
|
|
|
|
|
|
</p>
|
2023-06-06 15:28:24 -04:00
|
|
|
|
<p>
|
2019-09-13 10:25:16 +01:00
|
|
|
|
We do not offer out of hours support if your service is in
|
2016-12-12 11:44:11 +00:00
|
|
|
|
trial mode.
|
|
|
|
|
|
</p>
|
2023-06-06 15:28:24 -04:00
|
|
|
|
<h2 class="font-body-lg">Any other problems</h2>
|
2016-12-12 11:44:11 +00:00
|
|
|
|
<p class="bottom-gutter-2">
|
2023-08-08 16:19:17 -04:00
|
|
|
|
<a class="usa-link" href="{{ url_for('main.feedback', ticket_type='report-problem', severe='no') }}">Fill in this form</a>
|
2016-12-12 11:44:11 +00:00
|
|
|
|
and we’ll get back to you by the next working day.
|
|
|
|
|
|
</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|