mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
added some user access settings
This commit is contained in:
parent
1663b40737
commit
a2ce0bdce6
10 changed files with 252 additions and 19 deletions
51
dashboard-ui/allusersettings.html
Normal file
51
dashboard-ui/allusersettings.html
Normal file
|
@ -0,0 +1,51 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>User Profiles</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="allUserSettingsPage" 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" data-mini="true">
|
||||
<a href="userprofiles.html" data-role="button">Users</a>
|
||||
<a href="allusersettings.html" class="ui-btn-active" data-role="button">Settings</a>
|
||||
</div>
|
||||
|
||||
|
||||
<form id="allUserSettingsForm">
|
||||
|
||||
<p>Require manual username entry for:</p>
|
||||
<div data-role="controlgroup">
|
||||
<input type="checkbox" data-mini="true" id="chkMobileClients" name="chkMobileClients" />
|
||||
<label for="chkMobileClients">Mobile Clients</label>
|
||||
|
||||
<input type="checkbox" data-mini="true" id="chkMBT" name="chkMBT" />
|
||||
<label for="chkMBT">Media Browser Theater</label>
|
||||
|
||||
</div>
|
||||
<div class="fieldDescription">This will be ignored on localhost</div>
|
||||
<br />
|
||||
<br />
|
||||
|
||||
<ul data-role="listview" class="ulForm">
|
||||
<li>
|
||||
<button type="submit" data-theme="b" data-icon="ok">
|
||||
Save
|
||||
</button>
|
||||
<button type="button" onclick="Dashboard.navigate('dashboard.html');" data-icon="delete">
|
||||
Cancel
|
||||
</button>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$('#allUserSettingsForm').on('submit', AllUserSettingsPage.onSubmit);
|
||||
</script>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue