-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (41 loc) · 1.37 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="dist/assets/index.css" id="indexCSS">
<link href="https://fonts.googleapis.com/css?family=Roboto:300" rel="stylesheet">
<script type="text/javascript">
// call the compiled javascript
require('./dist/index.js').default();
</script>
<title>TCD</title>
</head>
<body>
<div id="titleBar">
<div id="iconContainer">
<img src="dist/assets/icon.png" id="iconImage">
</div>
<div id="draggableRegion"></div>
<div id="windowControls">
<div id="windowMinimize" class="windowControl">
<svg width="16px" height="16px" viewBox="0 0 16 16">
<path stroke="#ffffff" d="M2,4.5L14,4.5" />
</svg>
</div>
<div id="windowClose" class="windowControl">
<svg width="16px" height="16px" viewBox="0 0 16 16">
<path stroke="#ffffff" d="M2.5,2.5L13.5,13.5M2.5,13.5L13.5,2.5" />
</svg>
</div>
</div>
</div>
<div id="content">
<label for="vid">twitch.tv/videos/</label>
<input type="number" id="vid">
<button id="dl">Download</button>
<div id="progress"></div>
<div id="success"></div>
<div id="error"></div>
</div>
</body>
</html>