-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathwatchlist-static.html
More file actions
86 lines (76 loc) · 2.93 KB
/
Copy pathwatchlist-static.html
File metadata and controls
86 lines (76 loc) · 2.93 KB
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
82
83
84
85
86
<html >
<head>
<meta name="viewport" content="width = device-width, initial-scale = 1, shrink-to-fit = no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<title>Watchlist App</title>
</head>
<body>
<div class="container">
<nav class = "navbar navbar-expand-sm navbar-dark bg-secondary">
<a class = "navbar-brand" href = "homepage-static.html">Watchlist App</a>
<button class = "navbar-toggler" type = "button" data-toggle = "collapse"
data-target = "#navbarSupportedContent"
aria-controls = "navbarSupportedContent" aria-expanded = "false"
aria-label = "Toggle navigation">
<span class = "navbar-toggler-icon"></span>
</button>
<div class = "collapse navbar-collapse" id = "navbarSupportedContent">
<ul class = "navbar-nav mr-auto">
<li class = "nav-item">
<a class = "nav-link" href = "homepage-static.html">Home</a>
</li>
<li class = "nav-item active">
<a class = "nav-link" href = "watchlist-static.html">Watchlist</a>
</li>
<li class = "nav-item ">
<a class = "nav-link" href = "watchlistItemForm-static.html">Submit an item</a>
</li>
</ul>
</div>
</nav>
<h2 class = "mt-4">Watchlist</h2>
<table class="table">
<thead class = "thead-light">
<tr>
<th class="text-left">Title</th>
<th class="text-left">Rating</th>
<th class="text-left">Priority</th>
<th class="text-left">Comment</th>
<th class="text-left"></th>
</tr>
</thead>
<tbody>
<tr>
<td>Avatar</td>
<td>7.8</td>
<td>LOW</td>
<td>Peter recommended</td>
<td><a href="#" class="btn btn-info" role="button">Update</a></td>
</tr>
<tr>
<td>Inception</td>
<td>8.7</td>
<td>MEDIUM</td>
<td>YouTube trailer was just awesome!</td>
<td><a href="#" class="btn btn-info" role="button">Update</a></td>
</tr>
<tr>
<td>The Emoji Movie</td>
<td>3.2</td>
<td>HIGH</td>
<td>The boss recommended, have to see it!</td>
<td><a href="#" class="btn btn-info" role="button">Update</a></td>
</tr>
</tbody>
</table>
<hr/>
<div >
<div>Number of movies to watch: 3 </div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
</body>
</html>