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/wizardsettings.html

39 lines
2 KiB
HTML
Raw Normal View History

2016-06-04 23:50:07 -04:00
<div id="wizardSettingsPage" data-role="page" class="page standalonePage wizardPage" data-require="scripts/wizardsettings,paper-checkbox,emby-button">
2013-09-05 13:05:39 -04:00
2016-03-16 01:33:31 -04:00
<div data-role="content">
2013-09-05 13:05:39 -04:00
2016-03-16 01:33:31 -04:00
<div class="ui-corner-all ui-shadow wizardContent">
<form class="wizardSettingsForm">
<h1>
${LabelConfigureSettings}
</h1>
<div style="margin: 3em 0;">
<paper-checkbox class="chkEnableInternetProviders" checked>${LabelDownloadInternetMetadata}</paper-checkbox>
<div class="fieldDescription paperCheckboxFieldDescription">${LabelDownloadInternetMetadataHelp}</div>
</div>
<div>
<paper-checkbox class="chkSaveLocalMetadata">${LabelSaveLocalMetadata}</paper-checkbox>
<div class="fieldDescription paperCheckboxFieldDescription">${LabelSaveLocalMetadataHelp}</div>
</div>
2013-12-22 22:46:03 -05:00
2016-03-16 01:33:31 -04:00
<h1 style="margin-top: 1.5em;">${HeaderPreferredMetadataLanguage}</h1>
2013-12-22 22:46:03 -05:00
2016-03-16 01:33:31 -04:00
<div style="margin: 2em 0;">
<label for="selectLanguage" class="selectLabel">${LabelLanguage}</label>
<select name="selectLanguage" id="selectLanguage" data-mini="true" required="required"></select>
</div>
2013-12-22 22:46:03 -05:00
2016-03-16 01:33:31 -04:00
<div style="margin: 2em 0;">
<label for="selectCountry" class="selectLabel">${LabelCountry}</label>
<select name="selectCountry" id="selectCountry" data-mini="true" required="required"></select>
</div>
2013-09-05 13:05:39 -04:00
2016-03-16 01:33:31 -04:00
<div class="wizardNavigation">
2016-09-09 02:59:23 -04:00
<button is="emby-button" type="button" class="raised" onclick="history.back();"><i class="md-icon">arrow_back</i><span>${LabelPrevious}</span></button>
<button is="emby-button" type="submit" class="raised button-accent"><span>${LabelNext}</span><i class="md-icon">arrow_forward</i></button>
2016-03-16 01:33:31 -04:00
</div>
</form>
2013-09-05 13:05:39 -04:00
</div>
2016-03-16 01:33:31 -04:00
2013-09-05 13:05:39 -04:00
</div>
2016-03-16 01:33:31 -04:00
</div>