mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
55 lines
2.0 KiB
HTML
55 lines
2.0 KiB
HTML
<!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 by the web client on localhost. When disabled clients may present a login screen with a visual selection of users.</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>
|