Files
notifications-admin/app/templates/views/agreement/service-agreement.html
Tom Byers ee9f348ce4 Update all links to use GOVUK Frontend style
Includes:
- turning off :visited styles to match existing
  design
- swapping heading classes used to make links bold
  for the GOVUK Frontend bold override class
- adding visually hidden text to some links to
  make them work when isolated from their context

We may need to revisit whether some links, such as
those for documentation and features, may benefit
from having some indication that their target has
been visited.
2020-02-25 10:47:24 +00:00

44 lines
1.4 KiB
HTML

{% extends "withnav_template.html" %}
{% from "components/page-header.html" import page_header %}
{% from "components/button/macro.njk" import govukButton %}
{% block service_page_title %}
Accept our data sharing and financial agreement
{% endblock %}
{% block maincolumn_content %}
<div class="grid-row">
<div class="column-five-sixths">
{{ page_header(
'Accept our data sharing and financial agreement',
back_link=url_for('main.request_to_go_live', service_id=current_service.id)
)}}
<p>
Before you can use GOV.UK Notify, you need to accept our data sharing and financial agreement.
</p>
<p>
This must be done by, or on behalf of, someone with the authority to sign contracts for {{ current_service.organisation.name }}.
</p>
<p>
Once accepted, the agreement covers all Notify services from {{ current_service.organisation.name }}.
</p>
<p>
<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>.
</p>
<p>
The agreement is confidential and should not be shared outside your organisation.
</p>
{{ govukButton({
"element": "a",
"text": "Continue",
"href": url_for('main.service_accept_agreement', service_id=current_service.id),
}) }}
</div>
</div>
{% endblock %}