diff --git a/templates/requests/financial_verification.html b/templates/requests/financial_verification.html
index d49f9399..905e0c92 100644
--- a/templates/requests/financial_verification.html
+++ b/templates/requests/financial_verification.html
@@ -116,44 +116,45 @@
{{ TextInput(f.uii_ids,
paragraph=True,
- placeholder="e.g.: DI 0CVA5786950 \nUN1945326361234786950",
+ placeholder="examples: \nDI 0CVA5786950 \nUN1945326361234786950",
tooltip="A Unique Item Identifer is a unique code that helps the Department of Defense track and report on where and how digital assets are stored.
Not all applications have an existing UII number assigned."
) }}
{{ TextInput(f.pe_id,
- placeholder="e.g.: 0302400A",
- tooltip="Program Element numbers helps the Department of Defense identify which offices\\' budgets are contributing towards this resource use."
+ placeholder="e.g.: 0105688F",
+ validation="peNumber"
) }}
- {{ TextInput(f.treasury_code,placeholder="e.g.: 00123456") }}
+ {{ TextInput(f.treasury_code,placeholder="e.g.: 00123456",validation="treasuryCode") }}
- {{ TextInput(f.ba_code,placeholder="e.g.: 02A") }}
+ {{ TextInput(f.ba_code,placeholder="e.g.: 02A",validation="baCode") }}
+
+
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', 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.
diff --git a/templates/requests/screen-3.html b/templates/requests/screen-3.html index cbceccae..1232d1fa 100644 --- a/templates/requests/screen-3.html +++ b/templates/requests/screen-3.html @@ -36,10 +36,17 @@ {{ CheckboxInput(f.am_poc) }} - {{ TextInput(f.fname_poc,placeholder='First Name') }} - {{ TextInput(f.lname_poc,placeholder='Last Name') }} - {{ 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') }} + +