generated from CodeYourFuture/Project-TV-Show
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
79 lines (71 loc) · 2.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TV Show Project | azaralampanah2</title>
<link href="style.css" rel="stylesheet" />
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
</head>
<body>
<header>
<div id="searchBox">
<form action="/action_page.php">
<!---- <label id="displayingShowsLabel">Dispalying All Shows</label> --->
<label for="search-input" id="display-label">
Displaying: All Episodes
</label>
<input type="search" id="search-input" name="search" placeholder="search within episodes ...">
<input type="search" id="search-input-shows" placeholder="search within shows ...">
<label for="dropdown"></label>
<select id="dropdown" name="Episodes">
<option value="" disabled selected>Choose an Episode</option>
</select>
<label for="show-dropdown"></label>
<select id="show-dropdown" name="Episodes">
<option value="" disabled selected>Choose an show</option>
</select>
</form>
<p></p>
<label id="backToShows">Back To Shows</label>
<p></p>
<label id="backToEpisodes">Back To Episodes</label>
</div>
</header>
<div id="root">
<template id="filmEpisodes">
<section>
<h3>Episode Name- Episode Code </h3>
<img src="" alt="Episode Image" />
<p>Summary</p>
</section>
</template>
<template id="showsTemplate">
<section>
<h3>show name </h3>
<img src="" alt="Episode Image" />
<p>Summary</p>
</section>
<section id="moreDetails">
<p id="rating"></p>
<p id="genres"></p>
<p id="runTime"></p>
<p id="status"></p>
</section>
</template>
</div>
<footer>
<p>
Data originally sourced from
<a href="https://www.tvmaze.com/" target="_blank">TVMaze.com</a>.
</p>
<p>
For more information, view the
<a href="https://www.tvmaze.com/api#licensing" target="_blank">TVMaze API Licensing</a>.
</p>
</footer>
<!-- Loads a provided function called getAllEpisodes() which returns all episodes -->
<!-- Loads YOUR javascript code -->
<script src="script.js" defer></script>
</body>
</html>