diff --git a/templates/requests/screen-1.html b/templates/requests/screen-1.html index 43266b04..5f6bbf9f 100644 --- a/templates/requests/screen-1.html +++ b/templates/requests/screen-1.html @@ -33,7 +33,7 @@ {{ OptionsInput(f.organization_providing_assistance) }} {{ OptionsInput(f.engineering_assessment) }} {{ OptionsInput(f.data_transfers) }} -{{ TextInput(f.expected_completion_date, validation='date', placeholder='MM / DD / YYYY') }} +{{ OptionsInput(f.expected_completion_date) }} {{ OptionsInput(f.cloud_native) }}

Financial Usage

diff --git a/templates/requests/screen-2.html b/templates/requests/screen-2.html index be32dc90..ff191fcd 100644 --- a/templates/requests/screen-2.html +++ b/templates/requests/screen-2.html @@ -19,16 +19,16 @@

Please tell us more about you.

-{{ TextInput(f.fname_request,placeholder='First Name') }} -{{ TextInput(f.lname_request,placeholder='Last Name') }} -{{ TextInput(f.email_request,placeholder='jane@mail.mil') }} -{{ TextInput(f.phone_number,placeholder='(123) 456-7890') }} +{{ TextInput(f.fname_request, placeholder='First Name') }} +{{ TextInput(f.lname_request, placeholder='Last Name') }} +{{ TextInput(f.email_request, placeholder='jane@mail.mil', validation='email') }} +{{ TextInput(f.phone_number, placeholder='e.g. (123) 456-7890', validation='usPhone') }}

We want to collect the following information from you for security auditing and determining priviledged user access

{{ TextInput(f.service_branch,placeholder='e.g. US Air Force, US Army, US Navy, Marine Corps, Defense Media Agency') }} {{ OptionsInput(f.citizenship) }} {{ OptionsInput(f.designation) }} -{{ TextInput(f.date_latest_training) }} +{{ TextInput(f.date_latest_training, validation='date') }} {% endblock %} diff --git a/templates/requests/screen-3.html b/templates/requests/screen-3.html index 7de95813..8971215c 100644 --- a/templates/requests/screen-3.html +++ b/templates/requests/screen-3.html @@ -30,7 +30,7 @@ {{ TextInput(f.fname_poc,placeholder='First Name') }} {{ TextInput(f.lname_poc,placeholder='Last Name') }} -{{ TextInput(f.email_poc,placeholder='jane@mail.mil') }} -{{ TextInput(f.dodid_poc,placeholder='10-digit number on the back of the CAC') }} +{{ TextInput(f.email_poc,placeholder='jane@mail.mil', validation='email') }} +{{ TextInput(f.dodid_poc,placeholder='10-digit number on the back of the CAC', validation='dodId') }} {% endblock %}