mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-20 14:29:51 -04:00
remove unused support forms/pages & unused go-live form
This commit is contained in:
@@ -1,46 +0,0 @@
|
||||
{% extends "withoutnav_template.html" %}
|
||||
{% from "components/page-footer.html" import page_footer %}
|
||||
{% from "components/page-header.html" import page_header %}
|
||||
{% from "components/components/back-link/macro.njk" import usaBackLink %}
|
||||
|
||||
{% block per_page_title %}
|
||||
Out of hours emergencies
|
||||
{% endblock %}
|
||||
|
||||
{% block backLink %}
|
||||
{{ usaBackLink({ "href": url_for('.support') }) }}
|
||||
{% endblock %}
|
||||
|
||||
{% block maincolumn_content %}
|
||||
|
||||
{{ page_header('Out of hours emergencies')}}
|
||||
<div class="grid-row">
|
||||
<div class="grid-col-8">
|
||||
<p>
|
||||
First, check the
|
||||
<a class="usa-link" href="https://status.notifications.service.gov.uk">system status page</a>.
|
||||
You do not need to contact us if
|
||||
the problem you’re having is listed on that page.
|
||||
</p>
|
||||
<p>
|
||||
Otherwise, contact us using the emergency email address we
|
||||
gave you or your service manager when we made your service live.
|
||||
</p>
|
||||
<p>
|
||||
We’ll reply within 30 minutes and give you hourly updates
|
||||
until the problem’s fixed.
|
||||
</p>
|
||||
<p>
|
||||
We do not offer out of hours support if your service is in
|
||||
trial mode.
|
||||
</p>
|
||||
<h2 class="font-body-lg">Any other problems</h2>
|
||||
<p class="bottom-gutter-2">
|
||||
<a class="usa-link" href="{{ url_for('main.feedback', ticket_type='report-problem', severe='no') }}">Fill in this form</a>
|
||||
and we’ll get back to you by the next working day.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
{% endblock %}
|
||||
@@ -1,42 +0,0 @@
|
||||
{% extends "withoutnav_template.html" %}
|
||||
{% from "components/textbox.html" import textbox %}
|
||||
{% from "components/page-footer.html" import sticky_page_footer %}
|
||||
{% from "components/page-header.html" import page_header %}
|
||||
{% from "components/form.html" import form_wrapper %}
|
||||
{% from "components/components/back-link/macro.njk" import usaBackLink %}
|
||||
|
||||
{% block per_page_title %}
|
||||
{{ page_title }}
|
||||
{% endblock %}
|
||||
|
||||
{% block backLink %}
|
||||
{{ usaBackLink({ "href": back_link }) }}
|
||||
{% endblock %}
|
||||
|
||||
{% block maincolumn_content %}
|
||||
|
||||
{{ page_header(page_title) }}
|
||||
<div class="grid-row">
|
||||
<div class="grid-col-8">
|
||||
{% if show_status_page_banner %}
|
||||
<div class="panel panel-border-wide">
|
||||
<p>
|
||||
Check our <a class="usa-link" href="https://status.notifications.service.gov.uk">system status</a>
|
||||
page to see if there are any known issues with Notify.gov.
|
||||
</p>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% call form_wrapper() %}
|
||||
{{ textbox(form.feedback, width='1-1', hint='', rows=10, autosize=True) }}
|
||||
{% if not current_user.is_authenticated %}
|
||||
{{ form.name(param_extensions={"classes": ""}) }}
|
||||
{{ form.email_address(param_extensions={"classes": ""}) }}
|
||||
{% else %}
|
||||
<p>We’ll reply to {{ current_user.email_address }}</p>
|
||||
{% endif %}
|
||||
{{ sticky_page_footer('Send') }}
|
||||
{% endcall %}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
||||
@@ -1,50 +0,0 @@
|
||||
{% extends "withoutnav_template.html" %}
|
||||
|
||||
{% from "components/page-header.html" import page_header %}
|
||||
{% from "components/components/back-link/macro.njk" import usaBackLink %}
|
||||
|
||||
{% block per_page_title %}
|
||||
The Notify.gov service is for people who work in the government
|
||||
{% endblock %}
|
||||
|
||||
{% block backLink %}
|
||||
{{ usaBackLink({ "href": url_for('.support') }) }}
|
||||
{% endblock %}
|
||||
|
||||
{% block maincolumn_content %}
|
||||
|
||||
<div class="grid-row">
|
||||
<div class="grid-col-8">
|
||||
|
||||
{{ page_header('The Notify.gov service is for people who work in the government') }}
|
||||
|
||||
<p>
|
||||
We cannot give advice to the public. We do not have access to information about you held by government departments.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
There are other pages on Notify.gov where you can get help:
|
||||
</p>
|
||||
|
||||
<h2 class="govuk-heading-m">
|
||||
<a class="usa-link" href="https://www.gov.uk/coronavirus">Coronavirus (COVID-19)</a>
|
||||
</h2>
|
||||
<p>
|
||||
Find guidance and support.
|
||||
</p>
|
||||
<h2 class="govuk-heading-m">
|
||||
<a class="usa-link" href="https://www.gov.uk/contact">Contact the government</a>
|
||||
</h2>
|
||||
<p>
|
||||
Ask about benefits, driving, transport, tax, and more.
|
||||
</p>
|
||||
<h2 class="govuk-heading-m">
|
||||
<a class="usa-link" href="https://www.gov.uk/report-suspicious-emails-websites-phishing">Report internet scams and phishing</a>
|
||||
</h2>
|
||||
<p>
|
||||
Advice on suspicious emails and text messages.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
||||
@@ -1,38 +0,0 @@
|
||||
{% extends "withoutnav_template.html" %}
|
||||
{% from "components/page-footer.html" import page_footer %}
|
||||
{% from "components/page-header.html" import page_header %}
|
||||
{% from "components/components/back-link/macro.njk" import usaBackLink %}
|
||||
|
||||
{% block per_page_title %}
|
||||
Thanks for contacting us
|
||||
{% endblock %}
|
||||
|
||||
{% block backLink %}
|
||||
{{ usaBackLink({ "href": url_for('.support') }) }}
|
||||
{% endblock %}
|
||||
|
||||
{% block maincolumn_content %}
|
||||
|
||||
{{ page_header('Thanks for contacting us') }}
|
||||
<p>
|
||||
{% if out_of_hours_emergency %}
|
||||
We’ll reply in the next 30 minutes.
|
||||
{% else %}
|
||||
{% if email_address_provided %}
|
||||
{% if out_of_hours %}
|
||||
We’ll reply within one working day.
|
||||
{% else %}
|
||||
We’ll aim to read your message in the next 30 minutes and we’ll reply within one
|
||||
working day.
|
||||
{% endif %}
|
||||
{% else %}
|
||||
{% if out_of_hours %}
|
||||
We’ll read your message when we’re back in the office.
|
||||
{% else %}
|
||||
We’ll aim to read your message in the next 30 minutes.
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
</p>
|
||||
|
||||
{% endblock %}
|
||||
@@ -1,62 +0,0 @@
|
||||
{% extends "withoutnav_template.html" %}
|
||||
{% from "components/page-footer.html" import page_footer %}
|
||||
{% from "components/page-header.html" import page_header %}
|
||||
{% from "components/form.html" import form_wrapper %}
|
||||
{% from "components/components/back-link/macro.njk" import usaBackLink %}
|
||||
|
||||
{% block per_page_title %}
|
||||
{{ page_title }}
|
||||
{% endblock %}
|
||||
|
||||
{% block backLink %}
|
||||
{{ usaBackLink({ "href": url_for('.support') }) }}
|
||||
{% endblock %}
|
||||
|
||||
{% block maincolumn_content %}
|
||||
|
||||
<div class="grid-row">
|
||||
<div class="grid-col-8">
|
||||
{{ page_header(page_title) }}
|
||||
{% call form_wrapper() %}
|
||||
{{ form.severe }}
|
||||
{{ page_footer('Continue') }}
|
||||
{% endcall %}
|
||||
<h2 class="heading-small">
|
||||
It’s only an emergency if:
|
||||
</h2>
|
||||
<ul class="list list-bullet">
|
||||
<li>
|
||||
no one in your team can log in
|
||||
</li>
|
||||
<li>
|
||||
you get a ‘technical difficulties’ error message when you try
|
||||
to upload a file
|
||||
</li>
|
||||
<li>
|
||||
you get a 500 response code when you try to send messages
|
||||
using the API
|
||||
</li>
|
||||
</ul>
|
||||
<h2 class="heading-small">
|
||||
It’s not an emergency if:
|
||||
</h2>
|
||||
<ul class="list list-bullet bottom-gutter">
|
||||
<li>
|
||||
all your messages stay in ‘sending’ for a few hours
|
||||
</li>
|
||||
<li>
|
||||
you send the wrong message by accident
|
||||
</li>
|
||||
<li>
|
||||
a team member uses Notify.gov to send an
|
||||
inappropriate message
|
||||
</li>
|
||||
<li>
|
||||
your system is telling the Notify.gov API to send the wrong
|
||||
message
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user