-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (44 loc) · 1.68 KB
/
Copy pathindex.html
File metadata and controls
51 lines (44 loc) · 1.68 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
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>YT-Ripper</title>
<link rel="icon" href="assets/icon.png">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<div class="container">
<img src="assets/icon.png" alt="YT-Ripper" class="app-logo">
<h2>YT-Ripper</h2>
<div class="input-group">
<input type="text" id="urlInput" placeholder="Paste YouTube Link..." spellcheck="false">
</div>
<div class="folder-group">
<button id="browseBtn" class="outline-btn">
<i class="fas fa-folder-open"></i> Save To...
</button>
<div id="pathDisplay">Default: Downloads Folder</div>
</div>
<div class="button-group">
<button id="vidBtn" class="action-btn">
<i class="fas fa-video"></i> Download Video
</button>
<button id="audBtn" class="action-btn">
<i class="fas fa-music"></i> Download Audio
</button>
</div>
<p id="statusText">Ready.</p>
</div>
<div id="qualityModal" class="modal-overlay">
<div class="modal-content">
<h3>Select Quality</h3>
<button class="quality-btn" data-q="1080p">1080p (Full HD)</button>
<button class="quality-btn" data-q="720p">720p (HD)</button>
<button class="quality-btn" data-q="480p">480p (SD)</button>
<button id="cancelBtn" class="cancel-btn">Cancel</button>
</div>
</div>
<script src="renderer.js"></script>
</body>
</html>