2016-02-19 15:02:13 +00:00
|
|
|
|
{% extends "withnav_template.html" %}
|
|
|
|
|
|
{% from "components/yes-no.html" import yes_no %}
|
|
|
|
|
|
{% from "components/textbox.html" import textbox %}
|
|
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block page_title %}
|
|
|
|
|
|
Manage users – GOV.UK Notify
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
|
|
|
|
|
|
<h1 class="heading-large">
|
2016-03-11 07:47:46 +00:00
|
|
|
|
{{ user.name or user.email_localpart or "Invite a team member" }}
|
2016-02-19 15:02:13 +00:00
|
|
|
|
</h1>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="grid-row">
|
|
|
|
|
|
<form method="post" class="column-three-quarters">
|
|
|
|
|
|
|
2016-03-03 13:00:12 +00:00
|
|
|
|
{{ textbox(form.email_address, hint='Email address must end in .gov.uk', width='1-1') }}
|
2016-02-19 15:02:13 +00:00
|
|
|
|
|
|
|
|
|
|
<fieldset class='yes-no-wrapper'>
|
|
|
|
|
|
<legend class='heading-small'>
|
|
|
|
|
|
Permissions
|
|
|
|
|
|
</legend>
|
2016-02-29 11:03:35 +00:00
|
|
|
|
<span class="form-hint">All team members can see message history</span>
|
2016-03-09 17:42:47 +00:00
|
|
|
|
{{ yes_no(form.send_messages, form.send_messages.data) }}
|
|
|
|
|
|
{{ yes_no(form.manage_service, form.manage_service.data) }}
|
|
|
|
|
|
{{ yes_no(form.manage_api_keys, form.manage_api_keys.data) }}
|
2016-02-19 15:02:13 +00:00
|
|
|
|
</fieldset>
|
|
|
|
|
|
|
2016-03-09 15:30:40 +00:00
|
|
|
|
{{ page_footer('Send invitation email') }}
|
2016-02-19 15:02:13 +00:00
|
|
|
|
|
|
|
|
|
|
</form>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
{% endblock %}
|