mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-09 02:44:10 -04:00
35 lines
990 B
HTML
35 lines
990 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/textbox.html" import textbox %}
|
|
{% 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 %}
|
|
Add reply-to email address
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
{{ page_header(
|
|
'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 %}
|
|
<div class="form-group">
|
|
{{ checkbox(form.is_default) }}
|
|
</div>
|
|
{% endif %}
|
|
{{ page_footer('Add') }}
|
|
{% endcall %}
|
|
|
|
{% endblock %}
|