mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-05 21:18:25 -04:00
# Conflicts: # app/templates/components/components/footer/_footer.scss # app/templates/components/components/hint/_hint.scss # app/templates/views/service-settings/data-retention.html # app/templates/views/service-settings/sms-senders.html # app/templates/views/two-factor-webauthn.html # app/templates/views/user-profile/security-keys.html
31 lines
1.0 KiB
HTML
31 lines
1.0 KiB
HTML
{% extends "withnav_template.html" %}
|
||
{% from "components/form.html" import form_wrapper %}
|
||
{% from "components/components/back-link/macro.njk" import usaBackLink %}
|
||
{% from "components/page-footer.html" import page_footer %}
|
||
{% from "components/textbox.html" import textbox %}
|
||
{% from "components/components/textarea/macro.njk" import govukTextarea %}
|
||
|
||
{% block service_page_title %}
|
||
Describe the branding you want
|
||
{% endblock %}
|
||
|
||
{% if branding_options.something_else_is_only_option %}
|
||
{% set back_url = url_for('.service_settings', service_id=current_service.id) %}
|
||
{% else %}
|
||
{% set back_url = url_for('.email_branding_request', service_id=current_service.id) %}
|
||
{% endif %}
|
||
|
||
{% block backLink %}
|
||
{{ usaBackLink({"href": back_url}) }}
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
{% call form_wrapper() %}
|
||
{{ form.something_else }}
|
||
<p class="form-group">We’ll email you when your branding is ready, or if we need any more information.</p>
|
||
{{ page_footer('Request new branding') }}
|
||
{% endcall %}
|
||
|
||
{% endblock %}
|