2019-05-01 08:29:32 +01:00
{% extends "withnav_template.html" %}
{% from "components/page-header.html" import page_header %}
2020-01-30 14:01:13 +00:00
{% from "components/button/macro.njk" import govukButton %}
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-09-05 15:18:30 +01:00
Accept our 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 our 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 10:34:34 +01:00
Before you can use GOV.UK Notify, you need to accept our data sharing and financial agreement.
2019-07-15 10:51:15 +01:00
< / p >
2020-05-29 17:11:01 +01:00
< p class = "govuk-body" >
2019-07-18 10:34:34 +01:00
This must be done by, or on behalf of, someone with the authority to sign contracts for {{ current_service.organisation.name }}.
2019-07-15 10:51:15 +01:00
< / p >
2020-05-29 17:11:01 +01:00
< p class = "govuk-body" >
2019-07-18 10:34:34 +01:00
Once accepted, the agreement covers all Notify services from {{ current_service.organisation.name }}.
2019-07-15 10:51:15 +01:00
< / 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.service_download_agreement', service_id=current_service.id) }}" > Download a copy of the data sharing and financial agreement< / a > .
2019-07-15 10:51:15 +01:00
< / p >
2020-05-29 17:11:01 +01:00
< p class = "govuk-body" >
2019-07-18 10:34:34 +01:00
The agreement is confidential and should not be shared outside your organisation.
2019-07-15 10:51:15 +01:00
< / p >
2020-01-30 14:01:13 +00:00
{{ govukButton({
"element": "a",
"text": "Continue",
"href": url_for('main.service_accept_agreement', service_id=current_service.id),
}) }}
2019-05-01 08:29:32 +01:00
< / div >
< / div >
{% endblock %}