This repository has been archived by the owner on Mar 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
57 lines (57 loc) · 2.26 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
57
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Settings</title>
<link href="css/options.css" type="text/css" rel="stylesheet">
</head>
<body class="options">
<div id="wrapper">
<div id="header">
<h1>Fudan Mail Checker 设置</h1>
</div>
<div id="options">
<fieldset>
<legend>登录设置</legend>
<label for="">用户名</label>
<input type="text" name="username" id="username" value="" required>
<br>
<label for="password">密   码</label>
<input type="password" name="password" id="password" value="" required>
</fieldset>
<fieldset>
<legend>其它设置</legend>
<label for="">刷新间隔</label>
<select class="" name="interval" id="interval">
<option value="5">
5 minutes</option>
<option value="10">
10 minutes</option>
<option value="30">
30 minutes</option>
<option value="60">
60 minutes</option>
<option value="120">
120 minutes</option>
</select>
</fieldset>
<fieldset>
<legend>说明</legend>
<div class="" style="align-left">
<p>
默认为fudan.edu.cn域名,用户名不需要再添加后缀。
</p>
</div>
</fieldset>
<div id="tip">
<span></span>
</div>
</div>
<div id="action_panel">
<span id="status" style="color:red;font-size:12px;"></span>
<input type="button" id="save" value="保存"/>
</div>
</div>
</body>
<script type="text/javascript" src="js/options.js" charset="UTF-8"></script>
</html>