mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-04 16:37:59 -04:00
Includes: - turning off :visited styles to match existing design - swapping heading classes used to make links bold for the GOVUK Frontend bold override class - adding visually hidden text to some links to make them work when isolated from their context We may need to revisit whether some links, such as those for documentation and features, may benefit from having some indication that their target has been visited.
73 lines
2.1 KiB
HTML
73 lines
2.1 KiB
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/banner.html" import banner_wrapper %}
|
|
{% from "components/table.html" import list_table, field, hidden_field_heading %}
|
|
{% from "components/api-key.html" import api_key %}
|
|
{% from "components/page-header.html" import page_header %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
{% from "components/list-entry.html" import list_entry %}
|
|
{% from "components/form.html" import form_wrapper %}
|
|
|
|
{% block service_page_title %}
|
|
Whitelist
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
{% if form.email_addresses.errors or form.phone_numbers.errors %}
|
|
{% call banner_wrapper(type='dangerous') %}
|
|
<h1 class='banner-title'>
|
|
There was a problem with your whitelist
|
|
</h1>
|
|
<p>Fix these errors:</p>
|
|
<ul>
|
|
{% if form.email_addresses.errors %}
|
|
<li>
|
|
<a class="govuk-link govuk-link--no-visited-state" href="#{{ form.email_addresses.name }}">Enter valid email addresses</a>
|
|
</li>
|
|
{% endif %}
|
|
{% if form.phone_numbers.errors %}
|
|
<li>
|
|
<a class="govuk-link govuk-link--no-visited-state" href="#{{ form.phone_numbers.name }}">Enter valid phone numbers</a>
|
|
</li>
|
|
{% endif %}
|
|
</ul>
|
|
{% endcall %}
|
|
{% else %}
|
|
{{ page_header(
|
|
'Whitelist',
|
|
back_link=url_for('main.api_integration', service_id=current_service.id)
|
|
) }}
|
|
{% endif %}
|
|
|
|
<p>
|
|
You and members of
|
|
<a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('main.manage_users', service_id=current_service.id) }}">your team</a>
|
|
are included in the whitelist automatically.
|
|
</p>
|
|
|
|
{% call form_wrapper() %}
|
|
|
|
<div class="grid-row">
|
|
<div class="column-two-thirds">
|
|
|
|
{{ list_entry(
|
|
form.email_addresses,
|
|
item_name='email address',
|
|
autocomplete=False
|
|
) }}
|
|
|
|
{{ list_entry(
|
|
form.phone_numbers,
|
|
item_name='phone number',
|
|
autocomplete=False
|
|
) }}
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{{ page_footer('Save') }}
|
|
|
|
{% endcall %}
|
|
|
|
{% endblock %}
|