mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-24 04:10:57 -05:00
28 lines
683 B
HTML
28 lines
683 B
HTML
{% extends "withnav_template.html" %}
|
||
{% from "components/checkbox.html" import checkbox %}
|
||
{% 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">
|
||
{{ "Invite a team member" }}
|
||
</h1>
|
||
|
||
<div class="grid-row">
|
||
<form method="post" class="column-three-quarters">
|
||
|
||
{{ textbox(form.email_address, width='1-1', safe_error_message=True) }}
|
||
|
||
{% include 'views/manage-users/permissions.html' %}
|
||
|
||
{{ page_footer('Send invitation email') }}
|
||
|
||
</form>
|
||
</div>
|
||
{% endblock %}
|