-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (36 loc) · 1.66 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
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>mrMDB - Meta Rotten Movie Data Base - Get metacritic, rottentomatoes and imdb scores in one place</title>
<link rel="stylesheet" href="dist/bundle.css">
<link rel="shortcut icon" href="dist/assets/favicon.ico">
</head>
<body>
<div class="container content" ng-app="app">
<div class="row text-center top-header">
<h1 class="title-logo center-block" ui-sref="home"><strong>mrMDB</strong></h1>
<p>Quick Movie Info From IMDb, Metacritic, Rotten Tomatoes and more</p>
</div>
<div class="load-icon"></div>
<div ng-controller="mainController as main">
<div class="search-form">
<form class="search-input input-group" ng-submit="main.doSearch(searchBar.searchValue)">
<input type="text" class="form-control" placeholder="Search movie titles..." ng-model="main.searchValue">
<span class="input-group-btn">
<button class="btn btn-danger" type="submit">
<span class=" glyphicon glyphicon-search"></span>
</button>
</span>
</form>
</div>
<br>
<br>
<div class="movie-message"><strong ng-bind="main.message | uppercase"></strong></div>
<div ui-view class="main-view"></div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.3/jquery.js"></script>
<script src='dist/bundle.js'></script>
</body>
</html>