forked from ethanfregien2233/reel-roulette
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (88 loc) · 3.92 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
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
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.1/css/materialize.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<title>Reel Roulette</title>
</head>
<body>
<header>
</header>
<section class="hero">
<div class="hero-cta">
<h2>
Reel Roulette
</h2>
</div>
</section>
<br>
<br>
<br>
<main class="container border-style">
<div class="row">
<div class="input-field col s12 center-align" id="form-container">
<h3>Select a genre</h3>
<form id="genre-form">
<select id="genre-menu">
<option value=""> Roulette </option>
<option value="28">Action</option>
<option value="12">Adventure</option>
<option value="14">Fantasy</option>
<option value="35">Comedy</option>
<option value="53">Thriller</option>
<option value="80">Crime</option>
<option value="18">Drama</option>
<option value="27">Horror</option>
<option value="10749">Romance</option>
<option value="878">SciFi</option>
<option value="37">Western</option>
<option value="16">Animated</option>
<option value="10751">Kids</option>
</select>
<button class="#9e9e9e grey" id="submit-button" type="submit">Submit</button>
</form>
</div>
</div>
<!-- container for movie information -->
<div class="row" id="movie-information">
<h3 class=" col s12 center-align" id="movie-title">Welcome to Reel Roulette</h3>
<p class=" col s12 center-align" id="movie-overview"> Pick a categorey from the drop down menu and let us do the rest.</p>
<h4 class=" col s3" id="where-to-watch"></h4>
</div>
<!-- container for movie trailer -->
<div class="col s12 center-align" id="trailer-container">
<iframe width="720px" height="480" src="" allowfullscreen></iframe>
</div>
<div class="container">
<div class="row">
<div class="col s12">
<button id="list-button" class="btn waves-effect waves-light grey darken-2 col s12">Watch Later</button>
</div>
</div>
</div>
<div class="col s12" id="watchlist-container">
<fieldset class="card-panel grey darken-4 col s12">
<legend>Watch Later</legend>
<ul class="row" id="watch-list">
</ul>
</div>
</main>
<script src="https://apis.google.com/js/api.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script>
<script> document.addEventListener('DOMContentLoaded', function() {
var sel = document.querySelectorAll('select');
M.FormSelect.init(sel)
});
</script>
<script src="assets/js/script.js"></script>
</body>
</html>