2019-05-01 08:29:32 +01:00
|
|
|
|
{% extends "withnav_template.html" %}
|
|
|
|
|
|
{% from "components/page-header.html" import page_header %}
|
2021-07-30 18:23:12 +01:00
|
|
|
|
{% from "components/back-link/macro.njk" import govukBackLink %}
|
2019-05-01 08:29:32 +01:00
|
|
|
|
|
|
|
|
|
|
{% block service_page_title %}
|
2019-07-18 11:15:19 +01:00
|
|
|
|
Accept the data sharing and financial agreement
|
2019-05-01 08:29:32 +01:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
2021-07-30 18:23:12 +01:00
|
|
|
|
{% block backLink %}
|
|
|
|
|
|
{{ govukBackLink({ "href": url_for('main.request_to_go_live', service_id=current_service.id) }) }}
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
2019-05-01 08:29:32 +01:00
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
|
2020-02-19 11:57:15 +00:00
|
|
|
|
<div class="govuk-grid-row">
|
2020-02-20 16:55:56 +00:00
|
|
|
|
<div class="govuk-grid-column-five-sixths">
|
2019-05-01 08:29:32 +01:00
|
|
|
|
|
2021-07-30 18:23:12 +01:00
|
|
|
|
{{ page_header('Accept the data sharing and financial agreement')}}
|
2019-05-01 08:29:32 +01:00
|
|
|
|
|
2020-05-29 17:11:01 +01:00
|
|
|
|
<p class="govuk-body">
|
2019-07-18 11:15:19 +01:00
|
|
|
|
Before you can use GOV.UK Notify, you need to accept our data sharing and financial agreement.
|
|
|
|
|
|
</p>
|
2020-05-29 17:11:01 +01:00
|
|
|
|
<p class="govuk-body">
|
2019-07-18 11:15:19 +01:00
|
|
|
|
This must be done by, or on behalf of, someone with the authority to sign contracts for your organisation.
|
2019-07-15 10:51:15 +01:00
|
|
|
|
</p>
|
2020-05-29 17:11:01 +01:00
|
|
|
|
<p class="govuk-body">
|
2019-07-18 11:22:55 +01:00
|
|
|
|
Once accepted, the agreement covers all Notify services from your organisation.
|
|
|
|
|
|
</p>
|
2020-05-29 17:11:01 +01:00
|
|
|
|
<p class="govuk-body">
|
2019-07-15 10:51:15 +01:00
|
|
|
|
There are different agreements for crown and non-crown organisations.
|
|
|
|
|
|
</p>
|
2020-05-29 17:11:01 +01:00
|
|
|
|
<p class="govuk-body">
|
2019-12-06 07:53:46 +00:00
|
|
|
|
<a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('main.support') }}">Contact us</a> to tell us
|
2019-07-15 10:51:15 +01:00
|
|
|
|
whether or not you work for a crown organisation. If you’re not sure
|
|
|
|
|
|
we’ll help you work it out.
|
|
|
|
|
|
</p>
|
2019-05-01 08:29:32 +01:00
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|