jellyfin-web/dashboard-ui/wizardsettings.html
Luke Pulverenti 669c832ce6 updated nuget
2014-01-05 01:25:46 -05:00

49 lines
2.1 KiB
HTML

<!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">
<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.</div>
</div>
<h2 style="margin-top: 1.5em;">Preferred metadata 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">
<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>
</div>
</form>
</div>
</div>
<script type="text/javascript">
$('.wizardSettingsForm').off('submit', WizardSettingsPage.onSubmit).on('submit', WizardSettingsPage.onSubmit);
</script>
</div>
</body>
</html>