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-03-28 17:10:15 -07:00
< a href = "#" data-role = "button" onclick = "Dashboard.navigate('userimage.html', true);" > Image< / a >
2013-12-26 08:40:38 -07:00
< a href = "#" data-role = "button" onclick = "Dashboard.navigate('userparentalcontrol.html', true);" id = "lnkParentalControl" style = "display: none;" > Parental Control< / a >
< a href = "#" data-role = "button" onclick = "Dashboard.navigate('userpassword.html', true);" > Password< / a >
< a href = "#" data-role = "button" onclick = "Dashboard.navigate('usersettings.html', true);" > Preferences< / 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 >
2014-01-13 13:31:09 -07:00
< / ul >
< div id = "featureAccessFields" >
< h2 > Feature Access< / h2 >
< div >
2014-01-22 19:19:04 -07:00
< input type = "checkbox" id = "chkEnableMediaPlayback" name = "chkEnableMediaPlayback" data-mini = "true" / >
< label for = "chkEnableMediaPlayback" > Allow media playback< / label >
< / div >
< div >
2014-01-23 14:09:00 -07:00
< input type = "checkbox" id = "chkEnableLiveTvAccess" name = "chkEnableLiveTvAccess" data-mini = "true" / >
< label for = "chkEnableLiveTvAccess" > Allow browsing of live tv< / label >
2014-01-13 13:31:09 -07:00
< / div >
< div >
2014-01-22 19:19:04 -07:00
< input type = "checkbox" id = "chkManageLiveTv" name = "chkManageLiveTv" data-mini = "true" / >
2014-01-23 14:09:00 -07:00
< label for = "chkManageLiveTv" > Allow scheduling of tv recordings< / label >
< / div >
< div >
< input type = "checkbox" id = "chkEnableRemoteControlOtherUsers" name = "chkEnableRemoteControlOtherUsers" data-mini = "true" / >
< label for = "chkEnableRemoteControlOtherUsers" > Allow this user to remote control other users< / label >
2014-01-13 13:31:09 -07:00
< / div >
< br / >
< / div >
2013-12-26 08:40:38 -07:00
< div id = "accessControlDiv" style = "display: none" data-role = "collapsible" >
< h2 > Advanced Control< / h2 >
< div id = "fldIsEnabled" style = "margin: 1em 0 2em;" >
2014-01-22 19:19:04 -07:00
< input type = "checkbox" id = "chkDisabled" name = "chkDisabled" data-mini = "true" / >
2013-12-26 08:40:38 -07:00
< 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 >
< / div >
< p id = "fldIsHidden" >
2014-01-22 19:19:04 -07:00
< input type = "checkbox" id = "chkIsHidden" name = "chkIsHidden" data-mini = "true" / >
2013-12-26 08:40:38 -07:00
< label for = "chkIsHidden" > Hide this user from login screens< / label >
< / p >
2013-05-30 10:43:59 -07:00
< / div >
2013-12-26 08:40:38 -07:00
< br / >
2013-02-20 18:33:05 -07:00
< ul data-role = "listview" class = "ulForm" >
< li >
2014-01-22 19:19:04 -07:00
< button type = "submit" data-theme = "b" data-icon = "check" data-mini = "true" >
2013-02-20 18:33:05 -07:00
Save
< / button >
2014-01-22 19:19:04 -07:00
< button type = "button" onclick = "history.back();" data-icon = "delete" data-mini = "true" >
2013-02-20 18:33:05 -07:00
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 >