1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/dashboard-ui/useredit.html

84 lines
4.8 KiB
HTML
Raw Normal View History

2013-02-20 20:33:05 -05:00
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
2014-04-24 13:30:59 -04:00
<div id="editUserPage" data-role="page" class="page type-interior userProfilesConfigurationPage publicUserPage">
2013-02-20 20:33:05 -05:00
<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">
2014-04-01 18:23:07 -04:00
<a href="#" data-role="button" class="ui-btn-active">${TabProfile}</a>
<a href="#" data-role="button" onclick="Dashboard.navigate('userimage.html', true);">${TabImage}</a>
<a href="#" data-role="button" onclick="Dashboard.navigate('userparentalcontrol.html', true);" id="lnkParentalControl" style="display: none;">${TabLibraryAccess}</a>
<a href="#" data-role="button" onclick="Dashboard.navigate('userpassword.html', true);">${TabPassword}</a>
2013-02-20 20:33:05 -05:00
</div>
<form id="editUserProfileForm">
<ul data-role="listview" class="ulForm">
<li id="fldUserName">
2014-04-03 18:50:04 -04:00
<label for="txtUserName">${LabelName}</label>
2013-02-20 20:33:05 -05:00
<input id="txtUserName" name="txtUserName" required="required" type="text" />
</li>
<li id="fldIsAdmin" style="display: none;">
<input type="checkbox" id="chkIsAdmin" name="chkIsAdmin" />
2014-04-03 18:50:04 -04:00
<label for="chkIsAdmin">${OptionAllowUserToManageServer}</label>
</li>
</ul>
<div id="featureAccessFields">
2014-04-03 18:50:04 -04:00
<h2>${HeaderFeatureAccess}</h2>
<div>
<input type="checkbox" id="chkEnableMediaPlayback" name="chkEnableMediaPlayback" data-mini="true" />
2014-04-03 18:50:04 -04:00
<label for="chkEnableMediaPlayback">${OptionAllowMediaPlayback}</label>
</div>
<div>
<input type="checkbox" id="chkEnableLiveTvAccess" name="chkEnableLiveTvAccess" data-mini="true" />
2014-04-03 18:50:04 -04:00
<label for="chkEnableLiveTvAccess">${OptionAllowBrowsingLiveTv}</label>
</div>
<div>
<input type="checkbox" id="chkManageLiveTv" name="chkManageLiveTv" data-mini="true" />
2014-04-03 18:50:04 -04:00
<label for="chkManageLiveTv">${OptionAllowManageLiveTv}</label>
2014-03-25 17:13:55 -04:00
</div>
<div>
<input type="checkbox" id="chkEnableContentDeletion" name="chkEnableContentDeletion" data-mini="true" />
2014-04-03 18:50:04 -04:00
<label for="chkEnableContentDeletion">${OptionAllowDeleteLibraryContent}</label>
</div>
<div>
<input type="checkbox" id="chkEnableRemoteControlOtherUsers" name="chkEnableRemoteControlOtherUsers" data-mini="true" />
2014-04-03 18:50:04 -04:00
<label for="chkEnableRemoteControlOtherUsers">${OptionAllowRemoteControlOthers}</label>
</div>
<br />
</div>
<div id="accessControlDiv" style="display: none" data-role="collapsible">
2014-04-03 18:50:04 -04:00
<h2>${HeaderAdvancedControl}</h2>
<div id="fldIsEnabled" style="margin: 1em 0 2em;">
<input type="checkbox" id="chkDisabled" name="chkDisabled" data-mini="true" />
2014-04-03 18:50:04 -04:00
<label for="chkDisabled">${OptionDisableUser}</label>
<div class="fieldDescription">${OptionDisableUserHelp}</div>
</div>
<p id="fldIsHidden">
<input type="checkbox" id="chkIsHidden" name="chkIsHidden" data-mini="true" />
2014-04-03 18:50:04 -04:00
<label for="chkIsHidden">${OptionHideUser}</label>
</p>
2013-05-30 13:43:59 -04:00
</div>
<br />
2013-02-20 20:33:05 -05:00
<ul data-role="listview" class="ulForm">
<li>
<button type="submit" data-theme="b" data-icon="check" data-mini="true">
2014-04-01 18:23:07 -04:00
${ButtonSave}
2013-02-20 20:33:05 -05:00
</button>
<button type="button" onclick="history.back();" data-icon="delete" data-mini="true">
2014-04-01 18:23:07 -04:00
${ButtonCancel}
2013-02-20 20:33:05 -05:00
</button>
</li>
</ul>
</form>
</div>
</div>
<script type="text/javascript">
$('#editUserProfileForm').on('submit', EditUserPage.onSubmit);
</script>
</div>
</body>
2013-07-08 12:13:21 -04:00
</html>