Files
notifications-admin/app/templates/views/agreement/service-agreement.html
T

44 lines
1.5 KiB
HTML
Raw Normal View History

{% extends "withnav_template.html" %}
{% from "components/page-header.html" import page_header %}
{% from "components/button/macro.njk" import govukButton %}
{% block service_page_title %}
2019-09-05 15:18:30 +01:00
Accept our data sharing and financial agreement
{% endblock %}
{% block maincolumn_content %}
2020-02-19 11:57:15 +00:00
<div class="govuk-grid-row">
<div class="govuk-grid-column-five-sixths">
{{ page_header(
2019-09-05 15:18:30 +01:00
'Accept our data sharing and financial agreement',
back_link=url_for('main.request_to_go_live', service_id=current_service.id)
)}}
<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>
<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>
<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>
<p class="govuk-body">
<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>
<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>
{{ govukButton({
"element": "a",
"text": "Continue",
"href": url_for('main.service_accept_agreement', service_id=current_service.id),
}) }}
</div>
</div>
{% endblock %}