-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (44 loc) · 1.86 KB
/
index.html
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
<html>
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-V0DWB2Y7J7"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-V0DWB2Y7J7');
</script>
<title>YouTube Paraphraser</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<div id="container" class="container">
<div id="logo" class="logo-group">
<img class="logo" src="assets/yt.svg" alt="Logo">
<h1>YouTube Paraphraser</h1>
</div>
<div id="actions" class="actions">
<input id="url" class="url-field" type="url" placeholder="YouTube video URL">
<button id="go" class="go-button">Go</button>
</div>
<span id="load" class="loader" hidden></span>
<div id="summary">
<a id="thumb-url" target="_blank" href=""><img id="thumbnail" src="assets/placeholder.png"></a>
<h2 id="title"></h2>
<a id="author-url" target="_blank" href=""><h3 id="author"></h3></a>
<textarea id="paraphrased-text" class="paraphrased-field" readonly></textarea>
<button id="retry" class="retry-button">Summarize Another Video</button>
</div>
</div>
<div id="custom-alert" class="custom-alert">
<div class="custom-alert-content">
<p id="custom-alert-text"></p>
<button id="custom-alert-close">Close</button>
</div>
</div>
<button id="extensionButton">Get the Extension</button>
<footer>
© H Y P E R S P C
</footer>
<script type="module" src="script.js"></script>
</body>
</html>