jellyfin-web/dashboard-ui/wizardsettings.html

49 lines
2.2 KiB
HTML
Raw Normal View History

2013-09-05 10:05:39 -07:00
<!DOCTYPE html>
<html>
<head>
<title>Media Browser</title>
</head>
<body>
<div id="wizardSettingsPage" data-role="page" class="page standalonePage wizardPage mediaLibraryPage">
<div data-role="content">
<div class="ui-corner-all ui-shadow wizardContent">
2013-12-22 20:46:03 -07:00
<form class="wizardSettingsForm">
<h2>
<img src="css/images/mblogoicon.png" />Configure settings</h2>
<br />
<div style="margin: 1em 0;">
<label for="chkSaveLocalMetadata">Save metadata into media folders</label>
<input id="chkSaveLocalMetadata" name="chkSaveLocalMetadata" type="checkbox" checked="checked" />
<div class="fieldDescription">Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited and help reduce the size of the server's data folder.</div>
</div>
<h2 style="margin-top: 1.5em;">Preferred download language</h2>
<div style="margin: 2em 0;">
<label for="selectLanguage">Language: </label>
<select name="selectLanguage" id="selectLanguage" data-mini="true" required="required"></select>
</div>
<div style="margin: 2em 0;">
<label for="selectCountry">Country: </label>
<select name="selectCountry" id="selectCountry" data-mini="true" required="required"></select>
</div>
<div class="wizardNavigation">
2013-12-24 11:37:29 -07:00
<button type="button" data-iconpos="left" data-icon="arrow-l" data-inline="true" onclick="history.back();">Previous</button>
<button id="btnNextPage" type="submit" data-iconpos="right" data-icon="arrow-r" data-inline="true">Next</button>
2013-12-22 20:46:03 -07:00
</div>
</form>
2013-09-05 10:05:39 -07:00
</div>
</div>
2013-12-22 20:46:03 -07:00
<script type="text/javascript">
$('.wizardSettingsForm').off('submit', WizardSettingsPage.onSubmit).on('submit', WizardSettingsPage.onSubmit);
</script>
2013-09-05 10:05:39 -07:00
</div>
</body>
</html>