-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (40 loc) · 1.11 KB
/
index.html
File metadata and controls
46 lines (40 loc) · 1.11 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Terabox Downloader</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Fira+Code&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
overflow: hidden;
}
</style>
</head>
<body>
<div class="title-bar">
<div class="title">📥 Terabox Downloader</div>
<div class="window-controls">
<button id="minimize">🗕</button>
<button id="maximize">🗖</button>
<button id="close">✖</button>
</div>
</div>
<div class="container">
<h1>Terabox Auto Downloader</h1>
<div class="file-selector">
<button id="browseBtn">📂 Choose links.txt</button>
<span id="filePath">No file selected</span>
</div>
<div class="action-buttons">
<button id="startBtn">▶️ Start</button>
<button id="stopBtn">⛔ Stop</button>
<button id="skipBtn">⏭️ Skip</button>
</div>
<div id="logBox" class="log"></div>
</div>
<div class="footer">Made by codex67_cm</div>
<script src="renderer.js"></script>
</body>
</html>