diff --git a/templates/member_new.html b/templates/member_new.html index 7f616438..ad3723bf 100644 --- a/templates/member_new.html +++ b/templates/member_new.html @@ -18,12 +18,13 @@
{{ TextInput(form.first_name) }} {{ TextInput(form.last_name) }} - {{ TextInput(form.email) }} - {{ TextInput(form.dod_id) }} + {{ TextInput(form.email,placeholder='jane@mail.mil', validation='email') }} + {{ TextInput(form.dod_id,placeholder='10-digit number on the back of the CAC', validation='dodId') }} {{ OptionsInput(form.workspace_role) }}
+
Add User