jellyfin-web/dashboard-ui/appsweather.html

52 lines
2.2 KiB
HTML
Raw Normal View History

2013-12-25 20:44:26 -07:00
<!DOCTYPE html>
<html>
<head>
2014-04-08 19:12:17 -07:00
<title>${TitleAppSettings}</title>
2013-12-25 20:44:26 -07:00
</head>
<body>
<div id="appsWeatherPage" data-role="page" class="page appsPage type-interior">
<div data-role="content">
<div class="content-primary">
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
2014-04-08 19:12:17 -07:00
<a href="appsplayback.html" data-role="button">${TabResume}</a>
<a href="#" data-role="button" class="ui-btn-active">${TabWeather}</a>
2013-12-25 20:44:26 -07:00
</div>
<form class="appsWeatherForm">
<ul data-role="listview" class="ulForm">
<li>
<label for="txtWeatherLocation">Weather display location: </label>
<input id="txtWeatherLocation" name="txtWeatherLocation" type="text" />
<div class="fieldDescription">
US zip code / City, State, Country / City, Country
</div>
</li>
<li>
<label for="selectWeatherUnit">Weather display unit: </label>
<select id="selectWeatherUnit" name="selectWeatherUnit">
<option value="Celsius">Celsius</option>
<option value="Fahrenheit">Fahrenheit</option>
</select>
</li>
<li>
<button type="submit" data-theme="b" data-icon="check">
2014-04-08 19:12:17 -07:00
${ButtonSave}
2013-12-25 20:44:26 -07:00
</button>
<button type="button" onclick="Dashboard.navigate('dashboard.html');" data-icon="delete">
2014-04-08 19:12:17 -07:00
${ButtonCancel}
2013-12-25 20:44:26 -07:00
</button>
</li>
</ul>
</form>
</div>
</div>
<script type="text/javascript">
$('.appsWeatherForm').off('submit', AppsWeatherPage.onSubmit).on('submit', AppsWeatherPage.onSubmit);
</script>
</div>
</body>
</html>