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

43 lines
1.4 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 %}
{% from "components/back-link/macro.njk" import govukBackLink %}
{% block service_page_title %}
2019-09-05 15:18:30 +01:00
Accept our data sharing and financial agreement
{% endblock %}
{% block backLink %}
{{ govukBackLink({ "href": url_for('main.request_to_go_live', service_id=current_service.id) }) }}
{% 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('Accept our data sharing and financial agreement')}}
<p class="govuk-body">
2022-07-20 15:23:54 -07:00
Before you can use US 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">
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 %}