-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·79 lines (74 loc) · 3.59 KB
/
index.html
File metadata and controls
executable file
·79 lines (74 loc) · 3.59 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<title>zyu!</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link rel="icon" type="image/x-icon" href="./search/img/icon.png">
<link rel="stylesheet" href="./particles/particles.css">
<link href="./search/css/style.css" rel="stylesheet" type="text/css" />
<!-- FONTS -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
<script src="https://kit.fontawesome.com/8c24e81df2.js" crossorigin="anonymous"></script>
<script src="./lib/base64.js"></script>
<style>
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
</style>
</head>
<body onload="checkLWV()">
<div id="particles-js">
<div class="inset-0 flex items-center justify-center" id="modalEl">
<div id="whiteModalEl" class="max-w-xl p-6 text-center">
<div class="container" style="justify-content: center; align-items: center;">
<h1 style="font-size: 48px; font-weight: bolder; opacity: 0.8;">zyu!</h1>
<hr style="width:100% !important; height: 1px;">
<div class=center>
<h3 style="font-weight: bolder;" class="text-lg">YouTube Link:</h3>
<input style="height: 25px; color: black;" type="text" id="vLink" name="vLink" />
<input type="button" value="Watch" id="submit" onclick="Send()"/>
<br>
<h3 style="font-weight: bolder;" class="text-lg">Query:</h3>
<input style="height: 25px; color: black;" type="text" id="searchInput" name="searchInput" />
<input type="button" value="Search" id="submitSearch" onclick="searchYoutube()"/>
<div style="display: none;" class="lw">
<h3 style="font-weight: bolder;" class="text-lg">Continue where you left off: </h3>
<p title="Watch now!" style="cursor: pointer;" id="lw">Unavailable</p>
</div>
</div>
<hr style="width:100% !important; height: 1px;">
<div id="result"></div>
<hr style="width:100% !important; height: 1px;">
<div id="instructions" class="center">
<hr style="width:100% !important; height: 1px;">
<h3 style="font-weight: bolder;" class="text-lg">About Our Tool:</h3>
<p>Use to get around blocks, and watch YouTube without ads! Just paste in the link and click Watch!</p>
<h3 style="font-weight: bolder;" class="text-lg">Not Working?</h3>
<p>Make sure there isn't anything else at the end of the link, just the video ID!</p>
</div>
</body>
<br>
<hr style="width:100% !important; height: 1px;">
<div class="center">
<a style="color: gray; text-decoration: underline;" href="./history.html">History</a>
<br>
<a style="color: gray; text-decoration: underline;" href="./devlog.txt" target="_blank">devlog</a>
<p>Made by Flying Cat<br>
Check Out <a class="linelink" href="https://www.github.com/flyingcatdeveloper/" target="_blank">My Github!</a></p>
<p id="ver">v1.0</p>
</div>
</div>
</div>
<div>
</div>
<script src="./search/js/script.js"></script>
<script src="./particles/particles.js"></script>
<!-- <script src="./particles/app.js"></script> -->
</html>