forked from ga-wdi-exercises/bootflix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (37 loc) · 1.29 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
<html>
<!-- bootflix is a WDI Woodstock Production! -->
<head>
<title>Bootflix :: alpha</title>
<link rel="stylesheet" href="style/bootflix.css">
<script type="text/javascript" src="scripts/jquery.2.1.3.js"></script>
<script type="text/javascript" src="scripts/bootflixApp.js"></script>
<!-- ONLY EDIT THIS JS FILE -->
<script type="text/javascript" src="scripts/bootflixAjax.js"></script>
</head>
<body>
<header>
<hgroup>
<h2>Bootflix (alpha)</h2>
<h3>powered by <a href="http://www.omdbapi.com/" target="_blank">omdb</a></h3>
</hgroup>
</header>
<section id="movie-search">
<strong>Search by:</strong> Title <em>or</em> ID
<div class="search">
<form id="title-search-form" method="get">
<input type="text" name="title" placeholder="Enter movie title">
<input type="submit" value="Search for this title">
</form>
</div>
<div class="search">
<form id="id-search-form" method="get">
<input type="text" name="id" placeholder="Enter omdb movie ID">
<input type="submit" value="Search by ID">
</form>
</div>
</section>
<section id="movie-listing">
<!-- movies will be added here! -->
</section>
</body>
</html>