mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-04 19:38:24 -04:00
32 lines
922 B
HTML
32 lines
922 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/page-header.html" import page_header %}
|
|
{% from "components/uk_components/back-link/macro.njk" import govukBackLink %}
|
|
|
|
{% block service_page_title %}
|
|
Your organization has already accepted the 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('Your organization has already accepted the agreement')}}
|
|
|
|
<p class="govuk-body">
|
|
{{ current_service.organisation.name }} has already accepted the US
|
|
Notify data sharing and financial agreement.
|
|
</p>
|
|
<p class="govuk-body">
|
|
The agreement is confidential and should not be shared outside your organization.
|
|
</p>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|