mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-05-31 11:30:28 -04:00
This commit makes sure that the right permission choices are shown in these pages: - manage team page - invite a user page - edit permissions page This is in order to make changing these pages easier (see subsequent commits).
28 lines
675 B
HTML
28 lines
675 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 service_page_title %}
|
|
Invite a team member
|
|
{% 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 %}
|