forked from utk-cs340-fall22/suggestify.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtv.html
More file actions
103 lines (103 loc) · 3.1 KB
/
Copy pathtv.html
File metadata and controls
103 lines (103 loc) · 3.1 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Suggestify</title>
<link rel="stylesheet" href="styles.css" />
<script
src="https://kit.fontawesome.com/4ea5866b14.js"
crossorigin="anonymous"
></script>
<link
href="https://cdn.jsdelivr.net/npm/daisyui@2.31.0/dist/full.css"
rel="stylesheet"
type="text/css"
/>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.1/firebase-firestore.js"></script>
<script src="tv.js" defer></script>
</head>
<body>
<nav class="navbar bg-[#21252b] text-slate-300 fixed top-0">
<div class="navbar-start">
<div class="dropdown">
<label tabindex="0" class="btn btn-ghost btn-circle">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-5 w-5"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M4 6h16M4 12h16M4 18h7"
/>
</svg>
</label>
<ul
tabindex="0"
class="menu menu-compact dropdown-content mt-3 p-2 shadow bg-[#21252b] rounded-box w-52"
>
<li><a href="movies.html">Movies</a></li>
<li><a href="tv.html">TV Shows</a></li>
<li><a href="my-list.html">My List</a></li>
<li><a href="settings.html" class="mt-[12rem]">Settings</a></li>
<li><a href="login.html">Account</a></li>
<li><a href="credits.html">Credits</a></li>
</ul>
</div>
<div>
<a href="movies.html" class="btn btn-ghost normal-case text-l"
>Movies</a
>
<a href="tv.html" class="btn btn-ghost normal-case text-l"
>TV Shows</a
>
</div>
</div>
<div class="navbar-center">
<a href="index.html" class="btn btn-ghost normal-case text-2xl">Suggestify</a>
</div>
<div class="navbar-end">
<div>
<a href="search.html" class="btn btn-ghost normal-case mr-8 text-l">Search</a>
</div>
<div>
<a href="my-list.html" class="btn btn-ghost normal-case mr-8 text-l">
My List</a
>
<span class="badge badge-error absolute text-l right-[100px]"></span>
</div>
<button class="btn btn-ghost btn-circle mr-4">
<div>
<a href="login.html">
<img class="w-12 h-12" src="sus.png" alt="sussy">
</a>
</div>
</button>
</div>
</nav>
<br /><br /><br />
<br />
<h1 id="pageTitle"><p>📺 <b>TV Shows</b> 📺</p></h1>
<div id="genreTags"></div>
<br /><br /><br />
<main
id="tv"
style="margin-left: 88px !important; margin-right: 50px !important"
></main>
<div class="btn-group" id="pageButton">
<button class="btn" onclick="buttonBackward()">Prev</button>
<button class="btn" id="pageNumberButton">
<span id="Number">1</span>
</button>
<button class="btn" onclick="buttonForward()">Next</button>
</div>
</body>
</html>