-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (50 loc) · 1.8 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
<!--
Thanks To
My God
My Parents
Miftah GanzZ (me)
YanzBotz (constributor) [Rest API]
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Film Search</title>
<link href="https://fonts.googleapis.com/css2?family=Alice&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="header bg-dark">
<h1 style="font-size: 2rem; font-family: 'Alice', serif; margin-bottom: 3px;">Film Search</h1>
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-md-7">
<div class="input-group">
<input type="text" id="searchInput" class="form-control" placeholder="Search The Movie..." autocomplete="off" autofocus="autofocus" required>
<button id="searchButton" class="btn btn-primary">
<span id="searchText">Search</span>
<div id="loadingSpinner" class="spinner-border spinner-border-sm btn-search-spinner" role="status">
</div>
</button>
</div>
</div>
</div>
</div>
</div>
<div class="content mt-3 mt-md-5">
<div class="container">
<div class="row" id="movieResults">
</div>
</div>
</div>
<div class="footer">
© 2023 Film Search | <a href="https://github.com/miftahganzz">Miftah GanzZ</a><br>
Powered By: <a href="https://api.yanzbotz.my.id">YanzBotz API</a>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="script.js"></script>
</body>
</html>