Files
notifications-admin/app/templates/views/support/public.html
James Moffet e53d12733a branding
2022-07-20 15:23:54 -07:00

51 lines
1.7 KiB
HTML

{% extends "withoutnav_template.html" %}
{% from "components/page-header.html" import page_header %}
{% from "components/back-link/macro.njk" import govukBackLink %}
{% block per_page_title %}
The US Notify service is for people who work in the government
{% endblock %}
{% block backLink %}
{{ govukBackLink({ "href": url_for('.support') }) }}
{% endblock %}
{% block maincolumn_content %}
<div class="govuk-grid-row">
<div class="govuk-grid-column-two-thirds">
{{ page_header('The US Notify service is for people who work in the government') }}
<p class="govuk-body">
We cannot give advice to the public. We do not have access to information about you held by government departments.
</p>
<p class="govuk-body">
There are other pages on US Notifywhere you can get help:
</p>
<h2 class="govuk-heading-m govuk-!-margin-bottom-1">
<a class="govuk-link govuk-link--no-visited-state" href="https://www.gov.uk/coronavirus">Coronavirus (COVID-19)</a>
</h2>
<p class="govuk-body">
Find guidance and support.
</p>
<h2 class="govuk-heading-m govuk-!-margin-bottom-1">
<a class="govuk-link govuk-link--no-visited-state" href="https://www.gov.uk/contact">Contact the government</a>
</h2>
<p class="govuk-body">
Ask about benefits, driving, transport, tax, and more.
</p>
<h2 class="govuk-heading-m govuk-!-margin-bottom-1">
<a class="govuk-link govuk-link--no-visited-state" href="https://www.gov.uk/report-suspicious-emails-websites-phishing">Report internet scams and phishing</a>
</h2>
<p class="govuk-body">
Advice on suspicious emails and text messages.
</p>
</div>
</div>
{% endblock %}