forked from Z-Wave-Me/z-way-mini-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathz-way-demo.html
36 lines (32 loc) · 1.21 KB
/
z-way-demo.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Z-Way demo UI</title>
<!-- CSS -->
<link href="css/jquery-ui.css" rel="stylesheet" type="text/css"/>
<link href="css/z-way-demo.css" rel="stylesheet" type="text/css"/>
<!-- Public available JS libs -->
<script src="js/jquery.js"></script>
<script src="js/jquery-ui.js"></script>
<script src="js/jquery.dateformat.js"></script>
<script src="js/Base64.js"></script>
<!-- Our own JS extensions -->
<script src="js/jquery.triggerpath.js"></script>
<!-- Our code -->
<script src="js/z-way-demo.js"></script>
</head>
<body>
<table class="devices"></table>
<div>
Server time: <span class="updateTimeTick"></span><br/>
Server: <input type="text" value="" id="server_url" title="Example: http://192.168.1.100:8083"/><br/>
User: <input type="text" value="" id="server_user" title="Leave blank if not used"/><br/>
Password: <input type="password" value="" id="server_password"/><br/>
<button id="change_server">Change server</button><br/>
<span id="server_connection_status" class="red"></span>
</div>
<div class="DataHolder"></div>
<div id="interview_result"></div>
</body>
</html>