File tree Expand file tree Collapse file tree 1 file changed +46
-0
lines changed
Expand file tree Collapse file tree 1 file changed +46
-0
lines changed Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments