-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
42 lines (35 loc) · 1.19 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
<html>
<head>
<title>DoubanPac Settings</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="row">
<div class="span6 offset3">
<form action="" method="post" class="form">
<fieldset>
<legend>Remarque Server Settings</legend>
<label>Server URL</label>
<input type="text" id="url" placeholder="Default Server">
<span class="help-block">Leave off to use our default server.</span>
<label>Username</label>
<input type="text" id="username" placeholder="Type something…">
<label>Password</label>
<input type="password" id="password" placeholder="Type something…">
<hr>
<button type="submit" class="btn btn-primary" id="save">Save</button>
</fieldset>
</form>
</div>
</div>
<hr>
<footer>
<p style="text-align:right;">_by AquarHEAD L. | _a Team.TeaWhen project</p>
</footer>
</div>
</body>
<script src="jquery.js"></script>
<script src="options.js"></script>
</html>