Skip to content

Commit 9d6d77e

Browse files
committed
Committing dist/settings.html
1 parent 402a9d6 commit 9d6d77e

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

dist/settings.html

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Settings</title>
8+
<link rel="stylesheet" href="ui/settings.css" />
9+
</head>
10+
11+
<body>
12+
<div class="container">
13+
<header>
14+
<h1>Settings</h1>
15+
</header>
16+
17+
<div class="tabs">
18+
<div class="tab active" data-tab="course">Course Backup</div>
19+
</div>
20+
21+
<div id="course" class="tab-content active">
22+
<section>
23+
<h3>Course Backup Settings</h3>
24+
<label for="concurrency">Concurrent Downloads</label>
25+
<input type="number" id="concurrency" min="1" max="10" value="5" />
26+
27+
<label for="quality">Video Quality</label>
28+
<select id="quality">
29+
<option value="720p">720p</option>
30+
<option value="540p">540p</option>
31+
<option value="360p">360p</option>
32+
</select>
33+
34+
<label for="subtitle">Subtitle Language</label>
35+
<select id="subtitle"></select>
36+
</section>
37+
38+
<button id="saveBtn">💾 Save Settings</button>
39+
<div id="status"></div>
40+
</div>
41+
</div>
42+
43+
<script src="scripts/settings.js"></script>
44+
</body>
45+
46+
</html>

0 commit comments

Comments
 (0)