mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
92 lines
5.5 KiB
HTML
92 lines
5.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title></title>
|
|
</head>
|
|
<body>
|
|
<div id="editUserPage" data-role="page" class="page type-interior userProfilesPage publicUserPage">
|
|
|
|
<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">${TabProfile}</a>
|
|
<a href="#" data-role="button" onclick="Dashboard.navigate('userlibraryaccess.html', true);" id="lnkParentalControl" style="display: none;">${TabLibraryAccess}</a>
|
|
<a href="#" data-role="button" onclick="Dashboard.navigate('userparentalcontrol.html', true);">${TabParentalControl}</a>
|
|
</div>
|
|
<p class="lnkEditUserPreferencesContainer">
|
|
<a class="lnkEditUserPreferences" href="#" target="_blank">${ButtonEditOtherUserPreferences}</a>
|
|
</p>
|
|
|
|
<form id="editUserProfileForm">
|
|
<ul data-role="listview" class="ulForm">
|
|
<li id="fldUserName">
|
|
<label for="txtUserName">${LabelName}</label>
|
|
<input id="txtUserName" required="required" type="text" />
|
|
</li>
|
|
<li id="fldConnectInfo" style="display: none;">
|
|
<label for="txtConnectUserName">${LabelConnectUserName}</label>
|
|
<input id="txtConnectUserName" type="text" />
|
|
<div class="fieldDescription">
|
|
<div>${LabelConnectUserNameHelp}</div>
|
|
<div style="margin-top: .75em;"><a href="http://mediabrowser.tv/connect" target="_blank">${ButtonLearnMoreAboutMediaBrowserConnect}</a></div>
|
|
</div>
|
|
<br />
|
|
</li>
|
|
<li id="fldIsAdmin" style="display: none;">
|
|
<input type="checkbox" id="chkIsAdmin" name="chkIsAdmin" />
|
|
<label for="chkIsAdmin">${OptionAllowUserToManageServer}</label>
|
|
</li>
|
|
</ul>
|
|
<fieldset id="featureAccessFields" data-role="controlgroup">
|
|
<legend>${HeaderFeatureAccess}</legend>
|
|
<input type="checkbox" id="chkEnableMediaPlayback" name="chkEnableMediaPlayback" />
|
|
<label for="chkEnableMediaPlayback">${OptionAllowMediaPlayback}</label>
|
|
<input type="checkbox" id="chkEnableLiveTvAccess" name="chkEnableLiveTvAccess" />
|
|
<label for="chkEnableLiveTvAccess">${OptionAllowBrowsingLiveTv}</label>
|
|
<input type="checkbox" id="chkManageLiveTv" name="chkManageLiveTv" />
|
|
<label for="chkManageLiveTv">${OptionAllowManageLiveTv}</label>
|
|
<input type="checkbox" id="chkEnableContentDeletion" name="chkEnableContentDeletion" />
|
|
<label for="chkEnableContentDeletion">${OptionAllowDeleteLibraryContent}</label>
|
|
<input type="checkbox" id="chkEnableRemoteControlOtherUsers" name="chkEnableRemoteControlOtherUsers" />
|
|
<label for="chkEnableRemoteControlOtherUsers">${OptionAllowRemoteControlOthers}</label>
|
|
</fieldset>
|
|
<br />
|
|
<div id="accessControlDiv" style="display: none" data-role="collapsible">
|
|
<h2>${HeaderAdvancedControl}</h2>
|
|
<div id="fldIsEnabled" style="margin: 1em 0 2em;">
|
|
<input type="checkbox" id="chkDisabled" name="chkDisabled" data-mini="true" />
|
|
<label for="chkDisabled">${OptionDisableUser}</label>
|
|
<div class="fieldDescription">${OptionDisableUserHelp}</div>
|
|
</div>
|
|
<div style="margin: 1em 0;">
|
|
<input type="checkbox" id="chkDisableUserPreferences" data-mini="true" />
|
|
<label for="chkDisableUserPreferences">${OptionDisableUserPreferences}</label>
|
|
<div class="fieldDescription">${OptionDisableUserPreferencesHelp}</div>
|
|
</div>
|
|
<div id="fldIsHidden" style="margin: 2em 0 1em;">
|
|
<input type="checkbox" id="chkIsHidden" name="chkIsHidden" data-mini="true" />
|
|
<label for="chkIsHidden">${OptionHideUser}</label>
|
|
</div>
|
|
</div>
|
|
<br />
|
|
<ul data-role="listview" class="ulForm">
|
|
<li>
|
|
<button type="submit" data-theme="b" data-icon="check" data-mini="true">
|
|
${ButtonSave}
|
|
</button>
|
|
<button type="button" onclick="history.back();" data-icon="delete" data-mini="true">
|
|
${ButtonCancel}
|
|
</button>
|
|
</li>
|
|
</ul>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript">
|
|
$('#editUserProfileForm').on('submit', EditUserPage.onSubmit);
|
|
</script>
|
|
</div>
|
|
</body>
|
|
</html>
|