Files
notifications-admin/app/templates/views/service-settings/preview-email-branding.html
Jonathan Bobel 348e29fb40 - Removed links to the gov uk stylesheets
- Deleted /stylesheets folder
- Removed sass build from gulpfile
- Changed gov links to usa links
- Changed other govuk styles, like breadcrumbs
- Changed name of uk_components file to us_components
- Fixed a few tests that broke on account of the changes
2023-08-08 16:19:17 -04:00

27 lines
837 B
HTML

{% extends "withnav_template.html" %}
{% from "components/form.html" import form_wrapper %}
{% from "components/us_components/button/macro.njk" import govukButton %}
{% from "components/branding-preview.html" import email_branding_preview %}
{% block service_page_title %}
Preview email branding
{% endblock %}
{% block maincolumn_content %}
<h1 class="font-body-2xl margin-bottom-3">Preview email branding</h1>
<div class="govuk-grid-row">
<div class="govuk-grid-column-full">
{{ email_branding_preview(form.branding_style.data) }}
{% call form_wrapper(action=action) %}
<div class="form-group">
{{ form.hidden_tag() }}
<div class="page-footer">
{{ govukButton({ "text": "Save" }) }}
</div>
</div>
{% endcall %}
</div>
</div>
{% endblock %}