2013-07-08 09:13:21 -07:00
<!DOCTYPE html>
< html >
< head >
< title > User Profiles< / title >
< / head >
< body >
< div id = "allUserSettingsPage" data-role = "page" class = "page type-interior userProfilesConfigurationPage" >
< div data-role = "content" >
< div class = "content-primary" >
< div data-role = "controlgroup" data-type = "horizontal" class = "localnav" data-mini = "true" >
< a href = "userprofiles.html" data-role = "button" > Users< / a >
< a href = "allusersettings.html" class = "ui-btn-active" data-role = "button" > Settings< / a >
< / div >
< form id = "allUserSettingsForm" >
< p > Require manual username entry for:< / p >
2013-07-08 12:31:45 -07:00
2013-07-08 09:13:21 -07:00
< div data-role = "controlgroup" >
< input type = "checkbox" data-mini = "true" id = "chkMobileClients" name = "chkMobileClients" / >
< label for = "chkMobileClients" > Mobile Clients< / label >
< input type = "checkbox" data-mini = "true" id = "chkMBT" name = "chkMBT" / >
< label for = "chkMBT" > Media Browser Theater< / label >
< / div >
2013-07-08 12:31:45 -07:00
< div class = "fieldDescription" > This will be ignored by the web client on localhost. When disabled clients may present a login screen with a visual selection of users.< / div >
2013-07-08 09:13:21 -07:00
< br / >
< br / >
< ul data-role = "listview" class = "ulForm" >
< li >
< button type = "submit" data-theme = "b" data-icon = "ok" >
Save
< / button >
< button type = "button" onclick = "Dashboard.navigate('dashboard.html');" data-icon = "delete" >
Cancel
< / button >
< / li >
< / ul >
< / form >
< / div >
< / div >
< script type = "text/javascript" >
$('#allUserSettingsForm').on('submit', AllUserSettingsPage.onSubmit);
< / script >
< / div >
< / body >
< / html >