-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (64 loc) · 2.85 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
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
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Massive gallery</title>
<link rel="stylesheet" href="style.css">
<script src="scripts/site.js" type="module"></script>
</head>
<body>
<div class="searchWrapper">
<div class="left">
<button class="leftButton button" id="faqButton" title="faq"><img src="./images/question.svg" alt="faq"></button>
</div>
<input type="text" name="search" id="search">
<div class="filter">
<select id="searchFor" name="Filter" class="dropdown">
<option value="name">Name</option>
<option value="username">Username</option>
</select>
<img class="arrow" src="./images/arrow.svg">
</div>
<button id="searchButton"><img src="./images/search.svg" alt="search" title="search"></button>
<div class="right">
<div class="rightButtons">
<button class="button rightButton" id="rightButton">Category</button>
<dialog class="modal" id="userModal" style="padding-top: 50px;">
<div class="userSearchWrapper">
<input type="text" name="userSearch" id="userSearch" class="userSearch" placeholder="Search">
<button id="userSearchButton"><img src="./images/search.svg" alt="search" title="search"></button>
</div>
<span id="closeUser" class="closeModal">X</span>
<div class="userExtensions" id="userExtensions">
</div>
</dialog>
</div>
</div>
</div>
<div class="extension-out">
<div class="extensions" id="outer">
</div>
</div>
<dialog id="faqModal">
<span id="closeFaq">X</span>
<h1>What is UEG?</h1>
<p>UEG aims to have an all in one library to simplify finding extensions.</p>
<br>
<h1>How do i have my extension added?</h1>
<p>Message @callumjt on discord with your github repo of all your extensions (WE WILL NOT HOST YOUR SB3'S OR THUMBNAILS, YOU MUST PROVIDE IT YOURSELF).</p>
<br>
<h1>How do i get my extensions removed?</h1>
<p>Message @callumjt on discord to request to have your extensions taken of here.</p>
<br>
</dialog>
<div class="footer">
<h1>Ultimate Extension Gallery</h1>
<div class="links">
<a href="https://discord.gg/3xK9GjSQKS">Discord</a>
<a href="https://github.com/callumjt/ultimate-extension-gallery">GitHub</a>
</div>
</div>
<div class="copiedBanner" id="copyBanner">Copied to clipboard!</div>
</body>
</html>