-
Notifications
You must be signed in to change notification settings - Fork 2
/
watched.html
44 lines (36 loc) · 1.35 KB
/
watched.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
<!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">In Theaters</a></li>
<li><a href="./stats.html">Stats</a></li>
<li><a href="./watched.html" class="current">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>
<!-- will be filled with JSON-->
<main>
<div class="gallery">
</div>
</main>
</body>
<script>
getWatchedForGallery();
</script>
</html>