-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (57 loc) · 2.76 KB
/
Copy pathindex.html
File metadata and controls
62 lines (57 loc) · 2.76 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
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<title>Video Transcript</title>
<link type="text/css" rel="stylesheet" href="css/index.css">
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.3.2/jspdf.min.js"></script>
<link rel="apple-touch-icon" sizes="180x180" href="../images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
</head>
<body class="body" id="body">
<div class="button_wrapper" id="button_wrapper">
<button class="button" type="button" id="button_code">
<h1 class="h1">Code: ThankYou!</h1>
</button>
<button class="button" type="button" id="button_about">
<div id="underline"></div>
<h1 class="h1" id="h1_button_about">About</h1>
</button>
<button class="button" type="button" id="button_options">
<div id="underline"></div>
<h1 class="h1" id="h1_button_options">Options</h1>
</button>
<button class="button" type="button" id="button_download">
<div id="underline"></div>
<h1 class="h1" id="h1_button_download">Download</h1>
<img class="loading" id="loading_download" src="../images/loading-buffering.gif" />
</button>
<button class="button_hide" type="button" id="button_hide">
<img id="img_hide" src="../images/up.png" />
</button>
</div>
<div class="options_menu" id="options_menu">
<button class="button" type="button" id="button_keywords">
<div id="underline"></div><h1 class="h1" id="h1_button_keywords">Remove keywords</h1>
</button>
<button class="button" type="button" id="button_font">
<div id="underline"></div><h1 class="h1" id="h1_button_font">Bigger font</h1>
</button>
<button class="button" type="button" id="button_dark_light">
<div id="underline"></div><h1 class="h1" id="h1_button_dark_light">Dark mode</h1>
</button>
</div>
<div class="form_popup" id="form_popup">
<div class="popup_content">
<label for="user_id" id="enter_id"><b>Enter ID</b></label>
<input type="text" placeholder="User ID" name="user_id" id="user_id_text" value="" required>
</div>
<button class="button" type="submit" id="button_ok"><h1 class="h1">Ok</h1></button>
</div>
<div class="transcript" id="transcript"></div>
<div class="ytplayer" id="ytplayer"></div>
</body>
</html>