openhab2_tizen/index.html

37 lines
1.6 KiB
HTML
Raw Permalink Normal View History

2019-04-07 14:49:51 +02:00
<!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>
2019-04-09 00:09:24 +02:00
<div class="ui-page ui-page-active" id="page_main">
<header><h2>Main</h2></header>
2019-04-16 00:47:18 +02:00
<div class="ui-content" id="frame_main">
2019-04-15 02:55:23 +02:00
</div>
</div>
<div class="ui-page" id="page_settings">
<header><h2>Settings</h2></header>
<div class="ui-content">
2019-04-16 01:00:11 +02:00
<ul class="ui-listview" id="list_settings">
2019-04-15 02:55:23 +02:00
<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>
2019-04-09 00:09:24 +02:00
</div>
2019-04-07 22:12:07 +02:00
2019-04-11 02:19:22 +02:00
<script src="lib/tau/wearable/js/tau.js"></script>
2019-04-08 01:36:25 +02:00
<script src="js/jquery-3.3.1.js"></script>
2019-04-07 14:49:51 +02:00
<script src="js/app.js"></script>
<script src="js/lowBatteryCheck.js"></script>
<script src="js/circle-helper.js"></script>
</body>
</html>