forked from hpsu/nzbget-chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
62 lines (58 loc) · 2.53 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
58
59
60
61
62
<html>
<head>
<meta charset="utf-8">
<title>Options - nzbget-chrome</title>
<link rel="stylesheet" type="text/css" href="options.css">
<link href='http://fonts.googleapis.com/css?family=Roboto+Condensed:300italic,400italic,700italic,400,700,300|Roboto:400,100,100italic,300,300italic,400italic,500,500italic,700,700italic)' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="elements/ng-checkbox.css">
<script src="elements/ng-element.js"></script>
</head>
<body>
<div class="card">
<header class="header">
<img id="logo" src="img/nzbget-arrow.svg">
<h1>Settings</h1>
</header>
<fieldset>
<label for="opt_protocol">Protocol</label>
<select id="opt_protocol">
<option value="http">HTTP</option>
<option value="https">HTTPS</option>
</select>
<label for="opt_host">Host</label>
<input type="text" id="opt_host">
<label for="opt_port">Port</label>
<input type="text" id="opt_port">
<label for="opt_username">Username</label>
<input type="text" id="opt_username">
<label for="opt_password">Password</label>
<input type="password" id="opt_password">
<label for="opt_pathname">Path</label>
<input type="text" id="opt_pathname">
<ng-checkbox id="opt_rememberurls"
label="Remember downloaded URLs"
description="Used to highlight downloaded links
even after page reloads.">
</ng-checkbox>
<ng-checkbox id="opt_notifications"
label="Enable notifications"
description="Popup notifications on completed downloads.">
</ng-checkbox>
<label for="opt_historyitems">History items</label>
<div class="small">
History items shown in popup or 0 to disable history.
</div>
<input size="4" class="small" type="text" id="opt_historyitems"
title="Number of history items to show in popup">
<div id="connection_test"></div>
<div id="btn_grp">
<input type="button" id="btn_test" value="Test connection">
<input type="button" id="btn_save" value="Save">
</div>
</fieldset>
</div>
<script src="js/framework.js"></script>
<script src="js/options.js"></script>
<script src="elements/ng-checkbox.js"></script>
</body>
</html>