2013-02-20 18:33:05 -07:00
<!DOCTYPE html>
< html >
< head >
< title > < / title >
< / head >
< body >
< div id = "editUserPage" 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" id = "userProfileNavigation" style = "display: none;" data-mini = "true" >
< a href = "#" data-role = "button" class = "ui-btn-active" > Profile< / a >
2013-10-25 08:52:10 -07:00
< a href = "#" data-role = "button" onclick = "Dashboard.navigate('usersettings.html', true);" > Settings< / a >
2013-03-28 17:10:15 -07:00
< a href = "#" data-role = "button" onclick = "Dashboard.navigate('userimage.html', true);" > Image< / a >
< a href = "#" data-role = "button" onclick = "Dashboard.navigate('updatepassword.html', true);" > Password< / a >
2013-07-08 09:13:21 -07:00
< a href = "#" data-role = "button" onclick = "Dashboard.navigate('library.html', true);" class = "lnkMediaLibrary" style = "display: none;" > Media Library< / a >
2013-02-20 18:33:05 -07:00
< / div >
< form id = "editUserProfileForm" >
< ul data-role = "listview" class = "ulForm" >
< li id = "fldUserName" >
< label for = "txtUserName" > Name: < / label >
< input id = "txtUserName" name = "txtUserName" required = "required" type = "text" / >
< / li >
2013-05-24 12:07:51 -07:00
< li id = "fldIsAdmin" style = "display: none;" >
< input type = "checkbox" id = "chkIsAdmin" name = "chkIsAdmin" / >
< label for = "chkIsAdmin" > Allow this user to manage the server< / label >
< / li >
2013-10-30 08:55:55 -07:00
< li id = "fldEnableRemoteControlOtherUsers" style = "display: none;" >
< input type = "checkbox" id = "chkEnableRemoteControlOtherUsers" name = "chkEnableRemoteControlOtherUsers" / >
< label for = "chkEnableRemoteControlOtherUsers" > Allow this user to remote control sessions from other users< / label >
< / li >
2013-05-24 12:07:51 -07:00
< / ul >
2013-07-08 09:13:21 -07:00
< div id = "accessControlDiv" style = "display: none" >
< h2 > Access Control< / h2 >
< ul data-role = "listview" class = "ulForm" >
< li id = "fldIsEnabled" >
< input type = "checkbox" id = "chkDisabled" name = "chkDisabled" / >
< label for = "chkDisabled" > Disable this user< / label >
< div class = "fieldDescription" > If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.< / div >
< / li >
< li id = "fldIsHidden" >
< input type = "checkbox" id = "chkIsHidden" name = "chkIsHidden" / >
< label for = "chkIsHidden" > Hide this user from login screens< / label >
< / li >
< / ul >
< / div >
2013-05-30 10:43:59 -07:00
< div id = "parentalControlDiv" style = "display: none" >
< h2 > Parental Control< / h2 >
< ul data-role = "listview" class = "ulForm" >
2013-07-08 09:13:21 -07:00
< li id = "fldMaxParentalRating" >
2013-05-30 10:43:59 -07:00
< label for = "selectMaxParentalRating" > Max parental rating:< / label >
< select name = "selectMaxParentalRating" id = "selectMaxParentalRating" > < / select >
< / li >
2013-07-08 09:13:21 -07:00
< li id = "fldBlockNotRated" >
2013-05-30 10:43:59 -07:00
< input type = "checkbox" id = "chkBlockNotRated" name = "chkBlockNotRated" / >
< label for = "chkBlockNotRated" > Block items with no rating information< / label >
< / li >
< / ul >
< / div >
2013-02-20 18:33:05 -07:00
< ul data-role = "listview" class = "ulForm" >
< li >
2013-12-24 11:37:29 -07:00
< button type = "submit" data-theme = "b" data-icon = "check" >
2013-02-20 18:33:05 -07:00
Save
< / button >
< button type = "button" onclick = "history.back();" data-icon = "delete" >
Cancel
< / button >
< / li >
< / ul >
< / form >
< / div >
< / div >
< script type = "text/javascript" >
$('#editUserProfileForm').on('submit', EditUserPage.onSubmit);
< / script >
< / div >
< / body >
2013-07-08 09:13:21 -07:00
< / html >