Files
notifications-admin/app/templates/views/service-settings/email-reply-to/add.html

35 lines
990 B
HTML
Raw Normal View History

{% extends "withnav_template.html" %}
{% from "components/textbox.html" import textbox %}
2020-07-15 13:41:34 +01:00
{% from "components/checkbox.html" import checkbox %}
{% 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 %}
2019-07-09 16:37:22 +01:00
Add reply-to email address
{% endblock %}
{% block maincolumn_content %}
{{ page_header(
2019-07-09 16:37:22 +01:00
'Add reply-to email address',
back_link=url_for('main.service_email_reply_to', service_id=current_service.id)
) }}
{% call form_wrapper() %}
{{ textbox(
form.email_address,
width='1-1',
hint='This should be a shared inbox managed by your team, not your own email address',
safe_error_message=True
) }}
{% if not first_email_address %}
2020-07-15 13:41:34 +01:00
<div class="form-group">
{{ checkbox(form.is_default) }}
</div>
{% endif %}
{{ page_footer('Add') }}
{% endcall %}
2017-09-26 15:26:38 +01:00
{% endblock %}