mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-24 04:10:57 -05:00
Changes those fields (and sometimes also regular text input fields) in the following forms: - LoginForm - RegisterUserForm - ChangeEmailForm - FeedbackOrProblem - AcceptAgreementForm - ChangeNameForm (only name field here, but used in the same template field as ChangeEmailForm here: app/templates/views/user-profile/change.html) Also includes changes to templates that use this form and associated tests.
33 lines
755 B
HTML
33 lines
755 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/page-header.html" import page_header %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
{% from "components/form.html" import form_wrapper %}
|
|
|
|
{% block service_page_title %}
|
|
Invite a team member
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
{{ page_header(
|
|
'Invite a team member',
|
|
back_link=url_for('main.manage_users', service_id=current_service.id)
|
|
) }}
|
|
|
|
{% call form_wrapper() %}
|
|
|
|
{{ form.email_address(
|
|
param_extensions={
|
|
"classes": "govuk-!-width-full"
|
|
},
|
|
error_message_with_html=True
|
|
) }}
|
|
|
|
{% include 'views/manage-users/permissions.html' %}
|
|
|
|
{{ page_footer('Send invitation email') }}
|
|
|
|
{% endcall %}
|
|
|
|
{% endblock %}
|