-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoption.html
61 lines (59 loc) · 1.79 KB
/
option.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>csie.io DDNS option page</title>
<script src="option.js"></script>
<link rel=stylesheet type="text/css" href="style.css">
</head>
<body>
<div id="wrapper">
<div id="content">
<h1 class="center">Options</h1>
<div class="input">
<input type="text" id="hostname" placeholder="hostname"/>
</div>
<div class="input">
<input type="text" id="token" placeholder="token"/>
</div>
<div class="input">
<input type="text" id="updateInterval" placeholder="updateInterval"/>
</div>
<div id="advancedOptions" class="input">
<div id="advOptionTopbar">
+ Notifications options
</div>
<div id="advOptionContainer">
<hr/>
<div><input type="checkbox" id="useNotification"><label for="useNotification">本機通知</label></div>
<div>
<input type="text" class="optionInput" id="imToken" placeholder="跨IM平台token"/>
</div>
<div>
<input type="checkbox" id="useLineNotification"><label for="useLineNotification">Line 通知</label>
<input type="checkbox" id="useFBNotification"><label for="useFBNotification">FB Messenger 通知</label>
</div>
<!--div><input type="checkbox" id="useBackground">
<label for="useBackground">
Always run in background
<img class="inline-img" src="img/question.png" title="關掉chrome browser, 仍會在背景執行(Google Chrome OS 可使用, 其他 OS 不一定)"/>
</label>
</div-->
</div>
</div>
<div id="buttons">
<img id="powerStatus" class="powerOFF"> </img>
<button id="save">
save
</button>
<!--button id="forceUpdate">
force update
</button-->
</div>
</div>
<div class="footer">
本服務由csie.io提供, 詳細說明請登入: https://csie.io DNS管理介面
</div>
</div>
</body>
</html>