-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
61 lines (58 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Script Searcher</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<header>
<h1>Script Searcher</h1>
<div class="search-bar">
<input
type="text"
id="search-input"
placeholder="Search scripts..."
/>
<select id="filter-select">
<option value="">All</option>
<option value="free">Free</option>
<option value="paid">Paid</option>
</select>
<button id="search-button">Search</button>
</div>
</header>
<main>
<div id="error-message"></div>
<div id="scripts-grid" class="grid"></div>
<div class="pagination">
<button id="prev-button">Previous</button>
<button id="next-button">Next</button>
</div>
</main>
<footer class="footer">
<div class="credit">
<span
>Made by
<a href="https://github.com/AdvanceFTeam" target="_blank"
>AdvanceFalling Team</a
></span
>
<span>| Powered by Scriptblox API</span>
</div>
<div class="divider"></div>
<p>© 2024 AdvanceFalling Team</p>
</footer>
</div>
<div id="script-details-modal" class="modal">
<div class="modal-content">
<span id="close-modal" class="close">×</span>
<h2 id="modal-title"></h2>
<p id="modal-details"></p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>