-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (66 loc) · 2.89 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Twitch</title>
<script src="./lib/CSInterface.js"></script>
<script src="./lib/script.js"></script>
<link rel="stylesheet" href="./style.css" />
</head>
<body onload="onloaded()">
<div class="controls">
<button onclick="javascript:history.go(0)">Refresh panel</button>
<button onclick="addVideoSource()">+</button>
<button onclick="removeVideoSource()">-</button>
<button onclick="saveConfig()">Save Config</button>
<button onclick="loadConfig()">Load Config</button>
<button id="config-toggle" onclick="toggleConfig()">Hide ↑</button>
</div>
<div id="config-container" class="grid-container">
<div class="grid-layout">
<div class="config">
<label for="twitch-client-id">Twitch Client ID</label>
<input
type="text"
id="twitch-client-id"
placeholder="abcdefghijklmnopqrstuvwxyz1234" />
</div>
<div class="config">
<label for="twitch-client-secret">Twitch Client Secret</label>
<input
type="text"
id="twitch-client-secret"
placeholder="abcdefghijklmnopqrstuvwxyz1234" />
</div>
<div class="config">
<label for="twitch-vod-folder">Twitch VOD folder</label>
<input type="text" id="twitch-vod-folder" placeholder="D:/twitch_leecher" />
</div>
<div class="config">
<label for="twitch-cache-folder">Twitch cache folder</label>
<input
type="text"
id="twitch-cache-folder"
placeholder="E:/FILES/twitch-cache" />
</div>
<div class="config">
<label for="projects-folder">Projects folder</label>
<input type="text" id="projects-folder" placeholder="E:/VIDEOS" />
</div>
<div class="config">
<label for="presets-folder">Presets folder</label>
<input type="text" id="presets-folder" placeholder="E:/FILES/ppro-files" />
</div>
</div>
</div>
<div class="video-sources-container grid-container">
<div class="video-sources grid-layout"></div>
</div>
<div class="controls">
<button id="init-project">Initialise Project</button>
<button id="init-sequence">Initialise Sequence</button>
<button id="log-toggle" onclick="toggleLog()">Hide ↑</button>
</div>
<div id="log"></div>
</body>
</html>