diff --git a/templates/ccpo/add_user.html b/templates/ccpo/add_user.html index b3b9b0f5..9f6db9f3 100644 --- a/templates/ccpo/add_user.html +++ b/templates/ccpo/add_user.html @@ -1,25 +1,24 @@ {% extends "base.html" %} +{% from "components/save_button.html" import SaveButton %} {% from "components/text_input.html" import TextInput %} {% block content %} -
- {{ form.csrf_token }} -

{{ "ccpo.form.add_user_title" | translate }}

-
-
- {{ TextInput(form.dod_id, validation='dodId') }} -
-
-
- - {{ "common.cancel" | translate }} + + + {{ form.csrf_token }} +

{{ "ccpo.form.add_user_title" | translate }}

+
+
+ {{ TextInput(form.dod_id, validation='dodId') }} +
+
+
+ {{ SaveButton(text="common.next"|translate, element="input", additional_classes="action-group__action", form="add-ccpo-user-form") }} + {{ "common.cancel" | translate }} +
-
- + + {% endblock %}