This repository has been archived by the owner on Oct 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshowinfo.html
81 lines (75 loc) · 2.85 KB
/
showinfo.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
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="assets/img/logo.png">
<title id="pageTitle">MPL | </title>
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="assets/css/index.css">
<link rel="stylesheet" href="assets/css/info.css">
<script src="assets/js/main.js"></script>
<script src="assets/js/lr.js"></script>
<script src="assets/js/data.js"></script>
<script src="assets/js/render-show.js"></script>
</head>
<body>
<nav id="navbar"></nav>
<div class="ccontainer">
<div class="flex-line info-panel">
<img id="info-picture" src="" alt="Show Poster">
<div class="flex-col info-details">
<div id="info-title">
Show Name
</div>
<div class="flex-line info-detail">
<div class="flex-col">
<div id="info-rating">
<b>Score Rating:</b>
</div>
<div id="info-premiere">
<b>Premiere Date:</b>
</div>
<div id="info-directors">
<b>Directors:</b>
</div>
<div id="info-genres">
<b>Genres:</b>
</div>
</div>
<div class="flex-col">
<div id="info-agerating">
<b>Age rating:</b>
</div>
<div id="info-language">
<b>Language:</b>
</div>
</div>
</div>
<div class="flex-col info-detail">
<div id="info-seasons">
<b>Total seasons:</b>
</div>
<div>
<select class="season-select" id="info-episodes-select"></select>
Number of Episodes:
<span id="info-episodes"></span>
</div>
</div>
<div id="action-btn-div">
</div>
<div class="bottom-btn-div">
<button id="back_btn" class="back-btn">
Go back
</button>
</div>
</div>
</div>
<hr>
<div id="yt-embeddiv">
<iframe id="yt-embed" width="100%" height="100%" src="" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<footer id="footer"></footer>
</body>
</html>