-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (67 loc) · 2.45 KB
/
index.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<script src="https://d.line-scdn.net/liff/1.0/sdk.js"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="liff.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vConsole/3.3.0/vconsole.min.js"></script>
<link rel="stylesheet" type="text/css" href="liff.css" />
</head>
<body>
<script>
// init vConsole
var vConsole = new VConsole();
</script>
<!-- Title -->
<h2>訂會議室小幫手</h2>
<hr />
<p>
<img id="loading-animation" class="" src="loading.gif" height="14px" />
<span id="status" class="inactive">尚未報到</span>
</p>
<hr />
<div id="controls">
<!-- Device Info Table -->
<table class="device-info-table" >
<tr>
<th class="device-info-cell device-info-key">使用者名稱</th>
<td class="device-info-cell device-info-val" id="userName"></td>
</tr>
<tr>
<th class="device-info-cell device-info-key">使用者頭像</th>
<td class="device-info-cell device-info-val">
<img src=""
hidden="true"
id="userPic"
style="width:200px; height: 200px;"
alt="Italian Trulli">
</td>
</tr>
<tr>
<th class="device-info-cell device-info-key" >會議室</th>
<td class="device-info-cell device-info-val" id="device-name"></td>
</tr>
<tr hidden="true">
<th class="device-info-cell device-info-key">PSDI</th>
<td class="device-info-cell device-info-val" id="device-psdi"></td>
</tr>
<tr hidden="true">
<th class="device-info-cell device-info-key">Button state</th>
<td class="device-info-cell device-info-val">
<button id="btn-state" class="btn btn-state" disabled>Released</button>
</td>
</tr>
<!-- <tr>
<th class="device-info-cell device-info-key">Click count</th>
<td class="device-info-cell device-info-val" id="click-count">0</td>
</tr> -->
</table>
<hr />
<p>
<button id="btn-meetingroom-toggle" class="btn btn-meetingroom-toggle">釋放會議室</button>
</p>
<hr />
</div>
</body>
</html>