-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (36 loc) · 1.76 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="stylesheets/main.css">
<title>Movie Magic</title>
</head>
<body>
<header>
<input class="searchbar m-2 p-2" id="findMovies" type="text" placeholder="Search All Movies">
<button type="button" class="btn btn-primary btn-lg m-2" id="login">Login</button>
<button type="button" class="btn btn-primary btn-lg m-2" id="logout">Logout</button>
</header>
<nav class="breadcrumb">
<a class="breadcrumb-item" href="#">Movie History</a>
<span class="breadcrumb-item active" id="currentSection"></span>
</nav>
<div class="toggle-nav">
<button type="button" class="btn btn-secondary show-untracked filter" id="displayUntracked">Show Untracked</button>
<button type="button" class="btn btn-secondary show-unwatched filter" id="displayUnwatched">Show Unwatched</button>
<button type="button" class="btn btn-secondary show-watched filter" id="displayWatched">Show Watched</button>
<button type="button" class="btn btn-secondary show-favorites filter" id="displayFavorites">Favorites</button>
</div>
<div class = "container">
<div class = "row" id="findMoviesContainer">
<!-- movies cards appended here -->
</div>
</div>
<footer></footer>
<link rel='stylesheet' type='text/css' href='https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css'>
<script src="dist/bundle.js"></script>
</body>
</html>