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 %}
|
2018-09-19 12:39:36 +01:00
|
|
|
{% from "components/form.html" import form_wrapper %}
|
2016-02-19 15:02:13 +00:00
|
|
|
|
2017-02-13 10:45:15 +00:00
|
|
|
{% block service_page_title %}
|
2017-08-17 10:49:21 +01:00
|
|
|
Invite a team member
|
2016-02-19 15:02:13 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
|
|
|
|
<h1 class="heading-large">
|
2017-08-17 10:49:21 +01:00
|
|
|
Invite a team member
|
2016-02-19 15:02:13 +00:00
|
|
|
</h1>
|
|
|
|
|
|
2018-10-31 09:59:03 +00:00
|
|
|
{% call form_wrapper() %}
|
2016-02-19 15:02:13 +00:00
|
|
|
|
2018-10-31 09:59:03 +00:00
|
|
|
{{ textbox(form.email_address, width='1-1', safe_error_message=True) }}
|
2016-03-22 13:18:06 +00:00
|
|
|
|
2018-10-31 09:59:03 +00:00
|
|
|
{% include 'views/manage-users/permissions.html' %}
|
2016-02-19 15:02:13 +00:00
|
|
|
|
2018-10-31 09:59:03 +00:00
|
|
|
{{ page_footer('Send invitation email') }}
|
|
|
|
|
|
|
|
|
|
{% endcall %}
|
2016-02-19 15:02:13 +00:00
|
|
|
|
|
|
|
|
{% endblock %}
|