mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-04 17:58:25 -04:00
We had 7 classes in _grids.scss named `.column-...` which were being used to give a certain column width. These worked by using `@include grid column()`, which is now deprecated. `.column-whole` and `.column-three-quarters` can be removed and replaced with `govuk-grid-column-full` and `govuk-grid-column-three-quarters` respectively. The other column classes don't have a direct replacment in GOV.UK Frontend. To get round this, we overwrite the `$govuk-grid-width` SASS map in `extensions.scss` to add in extra widths, then use this with the `govuk-grid-column` mixin to create new classes in for our custom widths in `_grids.scss`
44 lines
1.4 KiB
HTML
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="govuk-grid-row">
|
|
<div class="govuk-grid-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 %}
|