mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-24 09:58:43 -04:00
34 lines
1001 B
HTML
34 lines
1001 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/page-header.html" import page_header %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
{% from "components/form.html" import form_wrapper %}
|
|
{% from "components/components/back-link/macro.njk" import usaBackLink %}
|
|
|
|
{% block service_page_title %}
|
|
Add reply-to email address
|
|
{% endblock %}
|
|
|
|
{% block backLink %}
|
|
{{ 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') }}
|
|
|
|
{% call form_wrapper() %}
|
|
{{ form.email_address(
|
|
param_extensions={
|
|
"hint": {"text": "This should be a shared inbox managed by your team, not your own email address"},
|
|
"classes": ""
|
|
},
|
|
error_message_with_html=True
|
|
) }}
|
|
{% if not first_email_address %}
|
|
{{ form.is_default }}
|
|
{% endif %}
|
|
{{ page_footer('Add') }}
|
|
{% endcall %}
|
|
|
|
{% endblock %}
|