2016-02-19 15:02:13 +00:00
|
|
|
|
{% extends "withnav_template.html" %}
|
2016-03-22 13:18:06 +00:00
|
|
|
|
{% from "components/checkbox.html" import checkbox %}
|
2016-02-19 15:02:13 +00:00
|
|
|
|
{% 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-22 13:18:06 +00:00
|
|
|
|
{{ "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-10-26 14:02:23 +01:00
|
|
|
|
{{ textbox(form.email_address, width='1-1', safe_error_message=True) }}
|
2016-03-22 13:18:06 +00:00
|
|
|
|
|
|
|
|
|
|
{% include 'views/manage-users/permissions.html' %}
|
2016-02-19 15:02:13 +00:00
|
|
|
|
|
2016-03-09 15:30:40 +00:00
|
|
|
|
{{ page_footer('Send invitation email') }}
|
2016-02-19 15:02:13 +00:00
|
|
|
|
|
|
|
|
|
|
</form>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
{% endblock %}
|