Files

34 lines
1001 B
HTML
Raw Permalink Normal View History

{% extends "withnav_template.html" %}
2019-04-29 11:44:05 +01:00
{% from "components/page-header.html" import page_header %}
{% from "components/page-footer.html" import page_footer %}
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/back-link/macro.njk" import usaBackLink %}
{% block service_page_title %}
2019-07-09 16:37:22 +01:00
Add reply-to email address
{% endblock %}
{% block backLink %}
2023-08-30 11:07:38 -04:00
{{ usaBackLink({ "href": url_for('main.service_email_reply_to', service_id=current_service.id) }) }}
{% endblock %}
{% block maincolumn_content %}
{{ page_header('Add reply-to email address') }}
2018-09-19 12:39:36 +01:00
{% call form_wrapper() %}
2020-08-07 15:16:04 +01:00
{{ form.email_address(
param_extensions={
"hint": {"text": "This should be a shared inbox managed by your team, not your own email address"},
2023-08-17 15:13:26 -04:00
"classes": ""
2020-08-07 15:16:04 +01:00
},
error_message_with_html=True
) }}
{% if not first_email_address %}
2020-04-09 16:31:19 +01:00
{{ form.is_default }}
{% endif %}
2019-04-29 11:44:05 +01:00
{{ page_footer('Add') }}
2018-09-19 12:39:36 +01:00
{% endcall %}
2017-09-26 15:26:38 +01:00
{% endblock %}