jellyfin-web/dashboard-ui/useredit.html

93 lines
5.5 KiB
HTML
Raw Normal View History

2013-02-20 18:33:05 -07:00
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
2014-10-25 11:32:58 -07:00
<div id="editUserPage" data-role="page" class="page type-interior userProfilesPage">
2013-02-20 18:33:05 -07:00
<div data-role="content">
<div class="content-primary">
2014-07-19 21:46:29 -07:00
2014-10-29 15:01:02 -07:00
<div data-role="controlgroup" data-type="horizontal" class="localnav" id="userProfileNavigation" data-mini="true">
2014-04-01 15:23:07 -07:00
<a href="#" data-role="button" class="ui-btn-active">${TabProfile}</a>
2014-10-29 15:01:02 -07:00
<a href="#" data-role="button" onclick="Dashboard.navigate('userlibraryaccess.html', true);">${TabLibraryAccess}</a>
2014-10-13 21:59:34 -07:00
<a href="#" data-role="button" onclick="Dashboard.navigate('userparentalcontrol.html', true);">${TabParentalControl}</a>
2014-10-29 15:01:02 -07:00
<a href="#" data-role="button" onclick="Dashboard.navigate('userpassword.html', true);">${TabPassword}</a>
2013-02-20 18:33:05 -07:00
</div>
<p class="lnkEditUserPreferencesContainer">
<a class="lnkEditUserPreferences" href="#" target="_blank">${ButtonEditOtherUserPreferences}</a>
</p>
2013-02-20 18:33:05 -07:00
<form id="editUserProfileForm">
<ul data-role="listview" class="ulForm">
<li id="fldUserName">
2014-04-03 15:50:04 -07:00
<label for="txtUserName">${LabelName}</label>
2014-09-14 08:10:51 -07:00
<input id="txtUserName" required="required" type="text" />
</li>
<li id="fldConnectInfo" style="display: none;">
<label for="txtConnectUserName">${LabelConnectUserName}</label>
<input id="txtConnectUserName" type="text" />
2014-09-14 10:12:47 -07:00
<div class="fieldDescription">
<div>${LabelConnectUserNameHelp}</div>
2014-09-14 10:28:14 -07:00
<div style="margin-top: .75em;"><a href="http://mediabrowser.tv/connect" target="_blank">${ButtonLearnMoreAboutMediaBrowserConnect}</a></div>
2014-09-14 10:12:47 -07:00
</div>
2014-10-13 21:59:34 -07:00
<br />
2013-02-20 18:33:05 -07:00
</li>
2014-10-29 15:01:02 -07:00
<li>
<input type="checkbox" id="chkIsAdmin" name="chkIsAdmin" />
2014-04-03 15:50:04 -07:00
<label for="chkIsAdmin">${OptionAllowUserToManageServer}</label>
</li>
</ul>
2014-09-14 08:10:51 -07:00
<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 />
2014-10-29 15:01:02 -07:00
<div id="accessControlDiv" data-role="collapsible">
2014-04-03 15:50:04 -07: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 15:50:04 -07:00
<label for="chkDisabled">${OptionDisableUser}</label>
<div class="fieldDescription">${OptionDisableUserHelp}</div>
</div>
2014-10-23 21:54:35 -07:00
<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" />
2014-04-03 15:50:04 -07:00
<label for="chkIsHidden">${OptionHideUser}</label>
2014-10-23 21:54:35 -07:00
</div>
2013-05-30 10:43:59 -07:00
</div>
<br />
2013-02-20 18:33:05 -07:00
<ul data-role="listview" class="ulForm">
<li>
<button type="submit" data-theme="b" data-icon="check" data-mini="true">
2014-04-01 15:23:07 -07:00
${ButtonSave}
2013-02-20 18:33:05 -07:00
</button>
<button type="button" onclick="history.back();" data-icon="delete" data-mini="true">
2014-04-01 15:23:07 -07:00
${ButtonCancel}
2013-02-20 18:33:05 -07:00
</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>