From ee4bf8589e424195db1af73e2dfff3d429a6dda5 Mon Sep 17 00:00:00 2001 From: luis cielak Date: Mon, 27 Aug 2018 10:02:55 -0400 Subject: [PATCH] Add masking and and placeholders --- templates/member_new.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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