mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-02 17:48:50 -04:00
They were already using the 'name' field in their label but we don't want any other part of the branding to appear now.
33 lines
845 B
HTML
33 lines
845 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/radios.html" import radios %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
|
|
{% block service_page_title %}
|
|
Set email branding
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<h1 class="heading-large">Set email branding</h1>
|
|
<form method="post">
|
|
<div class="grid-row">
|
|
<div class="column-one-half">
|
|
{{ radios(form.branding_type) }}
|
|
</div>
|
|
<div class="column-one-half">
|
|
{{ radios(form.branding_style) }}
|
|
</div>
|
|
</div>
|
|
<div class="grid-row">
|
|
<div class="column-three-quarters">
|
|
{{ page_footer(
|
|
'Preview',
|
|
back_link=url_for('.service_settings', service_id=current_service.id),
|
|
back_link_text='Back to settings'
|
|
) }}
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
{% endblock %}
|