-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathin_theaters.html
61 lines (52 loc) · 2.2 KB
/
in_theaters.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>ScreenTrack: using the IMDB API to display data about movies</title>
<link rel="icon" type="image/x-icon" href="images/camera.png">
<script type="text/javascript" src="scripts/config.js"></script> <!-- need this to be able to access the config file, needs to be placed before the rest!!-->
<script src="scripts/script.js"></script>
<script src="scripts/login.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="logo"><a href="./index.html"><img src="images/camera.png"></a></div>
<a href="./index.html"><h3>ScreenTrack</h3></a>
<nav class="main-nav">
<ul>
<li><a href="./top250.html">Top 250</a></li>
<li><a href="./in_theaters.html" class="current">In Theaters</a></li>
<li><a href="./stats.html">Stats</a></li>
<li><a href="./watched.html">Watched</a></li>
<li><a href="./about.html">About</a></li>
<li style="position: absolute; right: 0;"><a href="./login.html">Login</a></li>
</ul>
</nav>
</header>
<main>
<div id="filter_idea"><h5 style="margin-bottom: 0px">If you don't like any of the genres, you can click on them and
they will be filtered out. <br>If you click again on the genre,
movies with that genre will show up again. Try it out!</br></h5></div>
<div class="gallery"></div>
<div id="myModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<img id="modal_img" class="movie_image"></img>
<span id="modal_title"></span>
<br />
<span id="modal_text"></span>
<div class="modal-crew">
<p class = title>Runtime:</p>
<div><span id="modal_runtime"></span> minutes</div>
<p class = title>IMDb-Rating:</p>
<span id="modal_rating"></span>
</div>
</div>
<!-- will be filled with JSON-->
</main>
</body>
<script>
getInTheatersForTheaterTab();
</script>
</html>