2021-07-30 18:23:12 +01:00
|
|
|
|
{% extends "org_template.html" %}
|
2019-02-19 17:26:16 +00:00
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
2019-06-03 13:39:25 +01:00
|
|
|
|
{% from "components/page-header.html" import page_header %}
|
2019-02-19 17:26:16 +00:00
|
|
|
|
{% from "components/list-entry.html" import list_entry %}
|
|
|
|
|
|
{% from "components/form.html" import form_wrapper %}
|
2023-08-30 11:07:38 -04:00
|
|
|
|
{% from "components/components/back-link/macro.njk" import usaBackLink %}
|
2019-02-19 17:26:16 +00:00
|
|
|
|
|
|
|
|
|
|
{% block org_page_title %}
|
|
|
|
|
|
Known email domains
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
2021-07-30 18:23:12 +01:00
|
|
|
|
{% block backLink %}
|
2023-08-30 11:07:38 -04:00
|
|
|
|
{{ usaBackLink({ "href": url_for('.organization_settings', org_id=current_org.id) }) }}
|
2021-07-30 18:23:12 +01:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
2019-02-19 17:26:16 +00:00
|
|
|
|
{% block maincolumn_content %}
|
2021-07-30 18:23:12 +01:00
|
|
|
|
{{ page_header("Known email domains") }}
|
2023-08-23 16:18:25 -04:00
|
|
|
|
<div class="grid-row">
|
|
|
|
|
|
<div class="grid-col-10">
|
2023-06-06 15:28:24 -04:00
|
|
|
|
<p>
|
2019-02-19 17:26:16 +00:00
|
|
|
|
If a user’s email addresses ends with one of these domains then
|
2023-01-05 14:35:37 -05:00
|
|
|
|
any services they create will be associated with this organization.
|
2019-02-19 17:26:16 +00:00
|
|
|
|
</p>
|
|
|
|
|
|
{% call form_wrapper() %}
|
|
|
|
|
|
{{ list_entry(
|
|
|
|
|
|
form.domains,
|
|
|
|
|
|
item_name='domain',
|
|
|
|
|
|
autocomplete=False,
|
|
|
|
|
|
hint='For example cabinet-office.gov.uk'
|
|
|
|
|
|
) }}
|
|
|
|
|
|
{{ page_footer('Save') }}
|
|
|
|
|
|
{% endcall %}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
{% endblock %}
|