-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (53 loc) · 1.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM"
crossorigin="anonymous" />
<title>Where To Watch?</title>
</head>
<body>
<div class="container-fluid py-1" style="width: 800px">
<div>
<h5>Where to watch?</h5>
<p class="m-0" style="font-size: 14px">
Find where movies and tv shows are streamed on your region
</p>
<p id="region" style="font-size: 14px">Region:</p>
<div class="input-group input-group-sm mb-3">
<input
class="input-group-text w-75"
placeholder="Search for movies or tv shows"
id="query" />
<button class="btn btn-primary w-25" type="button" id="search">
Search
</button>
</div>
</div>
<div class="d-flex justify-content-center align-items-center">
<div class="spinner-border" role="status" hidden id="spinner"></div>
</div>
<ul
class="list-group overflow-y-scroll"
id="show-list"
style="max-height: 400px"></ul>
<p hidden id="not-found" style="font-size: 14px;">No movie/tv show found with your query.</p>
<div class="d-flex justify-content-between mt-3">
<i style="font-size: 11px"
>Where to watch? uses the TMDb API but is not endorsed or certified by
TMDb.</i
>
<img
id="tmdb-attribution"
width="50"
size="50"
sr="./images/tmdb.svg" />
</div>
</div>
</body>
<script src="script.js"></script>
</html>