mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-11 18:37:33 -04:00
37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
{% extends "withnav_template.html" %}
|
||
{% from "components/form.html" import form_wrapper %}
|
||
{% from "components/uk_components/back-link/macro.njk" import govukBackLink %}
|
||
{% from "components/page-footer.html" import page_footer %}
|
||
{% from "components/page-header.html" import page_header %}
|
||
|
||
{% block service_page_title %}
|
||
Before you request new branding
|
||
{% endblock %}
|
||
|
||
{% block backLink %}
|
||
{{ govukBackLink({
|
||
"href": url_for('.email_branding_request', service_id=current_service.id)
|
||
}) }}
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
{{ page_header('Before you request new branding') }}
|
||
|
||
<p class="govuk-body">You can only use U.S. Notify branding if people go to U.S. Notify to access your service.</p>
|
||
|
||
<p class="govuk-body">
|
||
You cannot use U.S. Notify branding if your organization is
|
||
<a class="govuk-link govuk-link--no-visited-state"
|
||
href="https://www.gov.uk/government/publications/govuk-proposition/govuk-proposition#organisations-independent-from-government">independent
|
||
from government</a>.
|
||
</p>
|
||
|
||
<p class="govuk-body">We’ll email you once your branding’s ready to use, or if we need any more information.</p>
|
||
|
||
{% call form_wrapper() %}
|
||
{{ page_footer('Request new branding') }}
|
||
{% endcall %}
|
||
|
||
{% endblock %}
|