mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-03 23:28:24 -04:00
The page_header macro includes an optional back link. Since the page_header is always used inside `<main>`, where the back link should not be, this stops setting the back link in the page header and instead sets it in the new `backLink` block.
46 lines
1.6 KiB
HTML
46 lines
1.6 KiB
HTML
{% 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 %}
|
|
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 %}
|
|
|
|
<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">
|
|
Before you can use GOV.UK Notify, you need to accept our data sharing and financial agreement.
|
|
</p>
|
|
<p class="govuk-body">
|
|
This must be done by, or on behalf of, someone with the authority to sign contracts for {{ current_service.organisation.name }}.
|
|
</p>
|
|
<p class="govuk-body">
|
|
Once accepted, the agreement covers all Notify services from {{ current_service.organisation.name }}.
|
|
</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>.
|
|
</p>
|
|
<p class="govuk-body">
|
|
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 %}
|