mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-10 10:03:21 -04:00
We were showing the form to request email branding with a button which submits your choice immediately. Now, we only submit the form immediately if "Something else" is the only branding option available to you. If you select any other radio button (or select "Something else" when it's not the only option) we take you to another page which either contains more information or a textbox to fill in the details for the branding you want. There is currently some duplication between the new pages and their tests, but these will be changed in future versions of the work so will start to differ more.
34 lines
1.1 KiB
HTML
34 lines
1.1 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 %}
|
||
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">
|
||
<a class="govuk-link govuk-link--no-visited-state" href="https://www.england.nhs.uk/nhsidentity/identity-guidelines/who-can-use-the-nhs-identity/">Check that your service is allowed to use the NHS identity</a>.
|
||
</p>
|
||
|
||
<p class="govuk-body">Your new branding should match the rest of your service.</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 %}
|