openhab2_tizen/index.html
2019-04-16 00:47:18 +02:00

36 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width,user-scalable=no">
<title>Basic</title>
<link rel="stylesheet" href="lib/tau/wearable/theme/default/tau.min.css">
<link rel="stylesheet" media="all and (-tizen-geometric-shape: circle)" href="lib/tau/wearable/theme/default/tau.circle.min.css">
<!-- load theme file for your application -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="ui-page ui-page-active" id="page_main">
<header><h2>Main</h2></header>
<div class="ui-content" id="frame_main">
</div>
</div>
<div class="ui-page" id="page_settings">
<header><h2>Settings</h2></header>
<div class="ui-content">
<ul class="ui-listview">
<li><label>URL<br/><input id="oh_url" type="url" onchange="storeSettings();") style="text-align:center"/></label></li>
<li><label>Remote URL<br/><input id="oh_remote_url" type="url" onchange="storeSettings();" style="text-align:center"/></label></li>
<li><label>Save Settings<button type="button" class="ui-btn" onclick="storeSettings();"></button></label></li>
<li><label>Reload Sitemap<button type="button" class="ui-btn" onclick="reloadSitemap();"></button></label></li>
<li><label>Clear Sitemap<button type="button" class="ui-btn" onclick="resetSitemap();"></button></label></li>
</ul>
</div>
</div>
<script src="lib/tau/wearable/js/tau.js"></script>
<script src="js/jquery-3.3.1.js"></script>
<script src="js/app.js"></script>
<script src="js/lowBatteryCheck.js"></script>
<script src="js/circle-helper.js"></script>
</body>
</html>