Files
notifications-admin/app/templates/views/service-settings/branding/email-branding-govuk.html
T
Katie Smith 5ada431da9 NHS and GOV.UK email branding pages now show preview and apply branding
The pages you were redirected to if you selected either GOV.UK branding
or NHS branding used to give information about the branding and have a
button that submitted a Zendesk ticket. Now, we show a preview of the
new branding and the button applies it.
2022-02-22 13:18:21 +00:00

43 lines
1.3 KiB
HTML

{% extends "withnav_template.html" %}
{% from "components/form.html" import form_wrapper %}
{% from "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 %}
Check your new branding
{% endblock %}
{% block backLink %}
{{ govukBackLink({
"href": url_for('.email_branding_request', service_id=current_service.id)
}) }}
{% endblock %}
{% block maincolumn_content %}
{{ page_header('Check your new branding') }}
<p class="govuk-body">
Emails from {{ current_service.name }} will look like this.
</p>
<iframe src="{{ url_for('main.email_template', branding_style='__NONE__') }}" class="branding-preview"></iframe>
<h2 class="heading-medium">Before you continue</h2>
<p class="govuk-body">You can only use GOV.UK branding if people go to GOV.UK to access your service.</p>
<p class="govuk-body">
You cannot use GOV.UK branding if your organisation 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>
{% call form_wrapper() %}
{{ page_footer('Use this branding') }}
{% endcall %}
{% endblock %}