Configuring Login Screen Input Fields
By default, the student application requires students to enter their (External) SSID and first name. The login screen is
rendered based on the configuration settings defined in the configs.client_testeeattribute table. The login screen can
be configured to require more (or less) student identifiers including:
- First name
 - Last name
 - Gender
 - District
 - Date of birth
 - Grade
 - SSID
 - School
 - State
 - District
 
An example of how to require a student to enter/validate his or her’s last name:
- Update the 
atlogincolumn inconfigs.client_testeeattributeto REQUIRE 
UPDATE configs.client_testeeattribute
SET atlogin = 'REQUIRE'
WHERE clientname = '[SBAC for production assessments, SBAC_PT for practice assessments]'
AND label = 'Last Name';
- Flush the redis cache
 

