Files
notifications-admin/app/templates/views/service-settings/branding/email-options.html
karlchillmaid 92343aa45e Update change links and headings (#3064)
* Update Settings titles
* Update Change links on settings
* Update Team members Change link
* Update Settings pages headings
2019-07-25 11:52:13 +01:00

48 lines
1.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% extends "withnav_template.html" %}
{% from "components/radios.html" import radio %}
{% from "components/textbox.html" import textbox %}
{% from "components/page-header.html" import page_header %}
{% from "components/page-footer.html" import page_footer %}
{% from "components/form.html" import form_wrapper %}
{% block service_page_title %}
Change email branding
{% endblock %}
{% block maincolumn_content %}
{{ page_header(
'Change email branding',
back_link=url_for('main.service_settings', service_id=current_service.id)
) }}
{% call form_wrapper() %}
<fieldset class="form-group {% if form.options.errors %}form-group-error{% endif %} top-gutter">
<legend class="bottom-gutter-2-3">
Choose the branding youd like on your emails.
</legend>
{% if form.options.errors %}
<span class="error-message" data-module="track-error" data-error-type="Cant be empty" data-error-label="{{ form.options.name }}">
You need to choose an option
</span>
{% endif %}
<div class="grid-row">
{% for option in form.options %}
<div class="column-one-quarter">
<label for="{{ option.id }}">
<img src="{{ asset_url('images/branding-options/{}.png'.format(option.data)) }}" alt="" class="bordered-image bottom-gutter-1-3">
</label>
{{ radio(option) }}
</div>
{% endfor %}
</div>
</fieldset>
<p class="form-group">
Well email you once your brandings ready to use, or if we need any
more information.
</p>
{{ page_footer('Request new branding') }}
{% endcall %}
{% endblock %}