mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
87 lines
4.8 KiB
HTML
87 lines
4.8 KiB
HTML
<!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>
|
|
<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>
|
|
<a href="#" data-role="button" onclick="Dashboard.navigate('library.html', true);" class="lnkMediaLibrary" style="display: none;">Media Library</a>
|
|
</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>
|
|
<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>
|
|
</ul>
|
|
<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>
|
|
<div id="parentalControlDiv" style="display: none">
|
|
<h2>Parental Control</h2>
|
|
<ul data-role="listview" class="ulForm">
|
|
<li id="fldMaxParentalRating">
|
|
<label for="selectMaxParentalRating">Max parental rating:</label>
|
|
<select name="selectMaxParentalRating" id="selectMaxParentalRating"></select>
|
|
</li>
|
|
<li id="fldBlockNotRated">
|
|
<input type="checkbox" id="chkBlockNotRated" name="chkBlockNotRated" />
|
|
<label for="chkBlockNotRated">Block items with no rating information</label>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<h2>Video Playback Settings</h2>
|
|
<ul data-role="listview" class="ulForm">
|
|
<li>
|
|
<label for="selectAudioLanguage">Audio language preference: </label>
|
|
<select name="selectAudioLanguage" id="selectAudioLanguage"></select>
|
|
</li>
|
|
<li>
|
|
<label for="selectSubtitleLanguage">Subtitle language preference: </label>
|
|
<select name="selectSubtitleLanguage" id="selectSubtitleLanguage"></select>
|
|
</li>
|
|
<li>
|
|
<input type="checkbox" id="chkForcedSubtitlesOnly" name="chkForcedSubtitlesOnly" />
|
|
<label for="chkForcedSubtitlesOnly">Display only forced subtitles</label>
|
|
</li>
|
|
<li>
|
|
<button type="submit" data-theme="b" data-icon="ok">
|
|
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>
|
|
</html>
|