mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-18 21:49:37 -04:00
All paragraphs should have class="govuk-body", or be otherwise custom-styled. This commit adds some extra checks to our test fixture that looks for paragraphs that don’t have any styling. Our test coverage is pretty good, so this should check almost all pages, and prevent regressions. I’ve done this in such a way that it can be extended for other elements (e.g. links) in the future.
40 lines
1.3 KiB
HTML
40 lines
1.3 KiB
HTML
{% extends "withnav_template.html" %}
|
||
{% from "components/page-header.html" import page_header %}
|
||
|
||
{% block service_page_title %}
|
||
Accept the data sharing and financial agreement
|
||
{% 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',
|
||
back_link=url_for('main.request_to_go_live', service_id=current_service.id)
|
||
)}}
|
||
|
||
<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 your organisation.
|
||
</p>
|
||
<p class="govuk-body">
|
||
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 you’re not sure
|
||
we’ll help you work it out.
|
||
</p>
|
||
|
||
</div>
|
||
</div>
|
||
|
||
{% endblock %}
|