2019-02-19 17:26:16 +00:00
|
|
|
{% extends "withnav_template.html" %}
|
2018-09-19 12:39:36 +01:00
|
|
|
{% from "components/form.html" import form_wrapper %}
|
2023-08-30 11:07:38 -04:00
|
|
|
{% from "components/components/button/macro.njk" import usaButton %}
|
2022-03-01 12:25:23 +00:00
|
|
|
{% from "components/branding-preview.html" import email_branding_preview %}
|
2020-01-30 14:01:13 +00:00
|
|
|
|
2018-08-02 14:46:01 +01:00
|
|
|
{% block service_page_title %}
|
|
|
|
|
Preview email branding
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
2019-02-19 17:26:16 +00:00
|
|
|
{% block maincolumn_content %}
|
2018-08-02 14:46:01 +01:00
|
|
|
|
2023-06-06 15:28:24 -04:00
|
|
|
<h1 class="font-body-2xl margin-bottom-3">Preview email branding</h1>
|
2023-08-23 16:18:25 -04:00
|
|
|
<div class="grid-row">
|
|
|
|
|
<div class="grid-col-12">
|
2022-03-01 12:25:23 +00:00
|
|
|
{{ email_branding_preview(form.branding_style.data) }}
|
2018-09-19 12:39:36 +01:00
|
|
|
{% call form_wrapper(action=action) %}
|
2018-08-02 14:46:01 +01:00
|
|
|
<div class="form-group">
|
|
|
|
|
{{ form.hidden_tag() }}
|
|
|
|
|
<div class="page-footer">
|
2023-08-30 11:07:38 -04:00
|
|
|
{{ usaButton({ "text": "Save" }) }}
|
2018-08-02 14:46:01 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2018-09-19 12:39:36 +01:00
|
|
|
{% endcall %}
|
2018-08-02 14:46:01 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{% endblock %}
|