Files
notifications-admin/app/templates/views/service-settings/preview-email-branding.html
T

26 lines
803 B
HTML
Raw Normal View History

{% extends "withnav_template.html" %}
2018-09-19 12:39:36 +01:00
{% from "components/form.html" import form_wrapper %}
{% from "components/button/macro.njk" import govukButton %}
2018-08-02 14:46:01 +01:00
{% block service_page_title %}
Preview email branding
{% endblock %}
{% block maincolumn_content %}
2018-08-02 14:46:01 +01:00
<h1 class="heading-large">Preview email branding</h1>
2020-02-19 11:57:15 +00:00
<div class="govuk-grid-row">
<div class="govuk-grid-column-full">
<iframe src="{{ url_for('main.email_template', branding_style=form.branding_style.data) }}" class="branding-preview"></iframe>
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">
{{ govukButton({ "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 %}