-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
64 lines (53 loc) · 1.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
63
64
<html>
<head>
<title>SeedBoxCo VLC Streamer - Options</title>
<style>
.container {
margin: 100px auto;
width: 400px;
}
.field { margin: 20px 0; }
label {
color: #121212;
cursor: pointer;
font-family: arial, sans-serif;
font-size: 14px;
font-weight: bold;
line-height: 2.2;
}
input {
border: 1px solid #AAA;
border-radius: 5px;
padding: 8px;
width: 400px;
}
button {
cursor: pointer;
font-weight: bold;
margin: 10px 0;
text-align: center;
padding: 15px;
width: 400px;
}
</style>
</head>
<body>
<div class="container">
<div class="field">
<label for="seedboxco-username">SeedBoxCo Username</label>
<input type="text" id="seedboxco-username" data-default="" />
</div>
<div class="field">
<label for="seedboxco-password">SeedBoxCo Password</label>
<input type="text" id="seedboxco-password" data-default="" />
</div>
<div class="field">
<label for="vlc-player-path">VLC Player Path</label>
<input type="text" id="vlc-player-path" data-default="C:/Program Files (x86)/VideoLAN/VLC/vlc.exe" />
</div>
<div id="status"></div>
<button id="save">Save Options</button>
</div>
</body>
<script src="options.js"></script>
</html>