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

42 lines
1.4 KiB
HTML
Raw Normal View History

{% extends "withnav_template.html" %}
{% from "components/page-header.html" import page_header %}
{% from "components/back-link/macro.njk" import govukBackLink %}
{% block service_page_title %}
2019-07-18 11:15:19 +01:00
Accept the 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 %}
<div class="govuk-grid-row">
<div class="govuk-grid-column-five-sixths">
{{ page_header('Accept the data sharing and financial agreement')}}
<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>
<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.
</p>
<p class="govuk-body">
2019-07-18 11:22:55 +01:00
Once accepted, the agreement covers all Notify services from your organisation.
</p>
<p class="govuk-body">
There are different agreements for crown and non-crown organisations.
</p>
<p class="govuk-body">
<a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('main.support') }}">Contact us</a> to tell us
whether or not you work for a crown organisation. If youre not sure
well help you work it out.
</p>
</div>
</div>
{% endblock %}