Files
notifications-admin/app/templates/views/invite-user.html
2016-10-26 14:02:23 +01:00

28 lines
683 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% 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 %}