mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-09 02:44:10 -04:00
On the page where signed in users can download the agreement: > The second sentence of that could probably just be 'You can [download > a copy]'. And could go at the end of the previous paragraph. (We try > to avoid 'here', and the 'if you need to' is probably unnecessary). On the page where we give users a choice of agreement to sign: > We could probably edit that callout down a bit to: '[Contact us] if > you're not sure whether your organisation is a crown or non-crown > body.' > > (Try to keep callouts to a single sentence if we can)
32 lines
892 B
HTML
32 lines
892 B
HTML
{% extends "withoutnav_template.html" %}
|
||
{% from "components/sub-navigation.html" import sub_navigation %}
|
||
|
||
{% block per_page_title %}
|
||
Download the GOV.UK Notify data sharing and financial agreement
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<div class="grid-row">
|
||
<div class="column-one-third">
|
||
{{ sub_navigation(navigation_links) }}
|
||
</div>
|
||
<div class="column-two-thirds">
|
||
|
||
<h1 class="heading-large">
|
||
Download the GOV.UK Notify data sharing and financial agreement
|
||
</h1>
|
||
|
||
<p>
|
||
Your organisation ({{ owner }}) has already accepted the GOV.UK
|
||
Notify data sharing and financial agreement. You can
|
||
<a href="{{ url_for('main.download_agreement') }}">download a copy</a>.
|
||
</p>
|
||
<p>
|
||
The agreement contains commercially sensitive information, so don’t share it more widely than you need to.
|
||
</p>
|
||
</div>
|
||
</div>
|
||
|
||
{% endblock %}
|