1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/dashboard-ui/allusersettings.html

55 lines
1.9 KiB
HTML
Raw Normal View History

2013-07-08 12:13:21 -04:00
<!DOCTYPE html>
<html>
<head>
2014-04-01 18:23:07 -04:00
<title>${HeaderUsers}</title>
2013-07-08 12:13:21 -04:00
</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">
2014-04-01 18:23:07 -04:00
<a href="userprofiles.html" data-role="button">${TabProfiles}</a>
<a href="#" class="ui-btn-active" data-role="button">${TabSecurity}</a>
2013-07-08 12:13:21 -04:00
</div>
<form id="allUserSettingsForm">
<p>${HeaderRequireManualLogin}</p>
2013-07-08 15:31:45 -04:00
2013-07-08 12:13:21 -04:00
<div data-role="controlgroup">
<input type="checkbox" data-mini="true" id="chkMobileClients" />
<label for="chkMobileClients">${OptionMobileApps}</label>
2013-07-08 12:13:21 -04:00
<input type="checkbox" data-mini="true" id="chkOtherApps" />
<label for="chkOtherApps">${OptionOtherApps}</label>
2013-07-08 12:13:21 -04:00
</div>
2013-07-08 15:31:45 -04:00
<div class="fieldDescription">${HeaderRequireManualLoginHelp}</div>
2013-07-08 15:31:45 -04:00
2013-07-08 12:13:21 -04:00
<br />
<br />
<ul data-role="listview" class="ulForm">
<li>
2013-12-24 13:37:29 -05:00
<button type="submit" data-theme="b" data-icon="check">
2014-04-08 22:12:17 -04:00
${ButtonSave}
2013-07-08 12:13:21 -04:00
</button>
<button type="button" onclick="Dashboard.navigate('dashboard.html');" data-icon="delete">
2014-04-08 22:12:17 -04:00
${ButtonCancel}
2013-07-08 12:13:21 -04:00
</button>
</li>
</ul>
</form>
</div>
</div>
<script type="text/javascript">
$('#allUserSettingsForm').on('submit', AllUserSettingsPage.onSubmit);
</script>
</div>
</body>
</html>