-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.html
56 lines (50 loc) · 1.69 KB
/
options.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Backlog Messenger Options</title>
<link rel="stylesheet" href="css/reset.css" type="text/css" media="screen" />
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" />
<link rel="stylesheet" href="css/options.css" type="text/css" media="screen" />
</head>
<body>
<div id="container">
<div id="header">
<h1>
Backlog Messenger Options
</h1>
</div>
<div id="content">
<form>
<table id="options">
<tr>
<th>Space ID</th>
<td>https://<input type="text" name="spaceId" value="" />.backlog.jp/</td>
</tr>
<tr>
<th>User ID</th>
<td><input type="text" name="userId" value="" /></td>
</tr>
<tr>
<th>Password</th>
<td><input type="password" name="password" value="" /></td>
</tr>
<tr>
<th>Refresh Interval (sec)</th>
<td><input type="text" name="interval" value="" /></td>
</tr>
</table>
<div id="save-button">
<button id="save">Save</button>
<span id="message"></span>
</div>
</form>
</div>
</div>
<script type="text/javascript" src="libs/3rdparty/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="libs/3rdparty/xmlrpc.js"></script>
<script type="text/javascript" src="libs/backlog.js"></script>
<script type="text/javascript" src="libs/utils.js"></script>
<script type="text/javascript" src="libs/options.js"></script>
</body>
</html>