-
Notifications
You must be signed in to change notification settings - Fork 3
/
options.html
67 lines (58 loc) · 1.65 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
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<title>Sonarr Connect Options</title>
<script src="js/vendor/jquery.js"></script>
<link rel="stylesheet" href="css/foundation.min.css">
</head>
<body>
<div class="row">
<h1>Sonarr Configuration</h1>
<div>
Url:
<input type="text" id="url">
</div>
<div>
Api key:
<input type="text" id="apiKey">
</div>
<div>
Number of days to show in calendar:
<input id="numberOfDaysCalendar" type="number"/>
</div>
<div>
Wanted Items:
<input id="wantedItems" type="number"/>
</div>
<div>
History Items:
<input id="historyItems" type="number"/>
</div>
<div>
Background interval: time in minutes
<input id="backgroundInterval" type="number"/>
</div>
<div>
<input id="show-badge" value="true" type="checkbox">
<label for="show-badge">Show badge if no wanted episodes are available</label>
</div>
<div>
<div id="connectionStatus"></div>
<div>
Version: <span id="version"></span>
</div>
<div>
Branch: <span id="branch"></span>
</div>
<button class="button" id="testConnection">Test connection</button>
<button class="button" id="save">Save</button>
<span id="status"></span>
<div>
SonarrConnect chrome extension <span id="versionNumber"></span> is created by T. Reinartz(tomreinartz) and C. Vaes(Killer8)
<br />Copyright 2015
</div>
</div>
<script src="js/options.js"></script>
</div>
</body>
</html>