forked from burtk33/CineFile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
watchlist.html
47 lines (43 loc) · 1.95 KB
/
watchlist.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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CineFile</title>
<!--link css files-->
<link rel="stylesheet" href="./assets/css/reset.css">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="./assets/css/watchlist.css">
</head>
<body>
<header class="w3-black w3-center">
<section class="w3-display-container">
<img src="./assets/images/CineFile-header.png" alt="headerimage" class="w3-image" style="width:100%">
</section>
<section class="w3-bar w3-black">
<a href="./index.html" class="w3-bar-item w3-button">Home</a>
<a href="./watchlist.html" class="w3-bar-item w3-button">Watch List</a>
</section>
</header>
<main class="w3-row-padding w3-margin-top">
<section class="w3-col m4">
<!--section to hold dynamically created list of seen movies-->
<section class="w3-card myColors w3-padding">
<h1 class="w3-center w3-text-white">Movies Seen</h1>
</section>
<section class="w3-card myColors w3-padding" id="moviesSeenResults">
</section>
</section>
<section class="w3-col m8">
<!--section to hold dynamically created watchlist-->
<section class="w3-card myColors w3-padding">
<h1 class="w3-center w3-text-white">Watch List</h1>
</section>
<section class="w3-card myColors w3-padding" id="watchListResults">
</section>
</section>
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="./assets/js/wl-script.js"></script>
</body>
</html>