forked from waffle-iron/Greenfield-Project
-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
95 lines (84 loc) · 3.63 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>
<head>
<title>Movie Box </title>
<script src="node_modules/angular/angular.js"></script>
<script async charset="utf-8"
src="//cdn.iframe.ly/embed.js?api_key=..."
></script>
<script src="//cdn.iframe.ly/embed.js?api_key=...&parent=yourclassname"
async charset="utf-8"></script>
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body background="https://d2v9y0dukr6mq2.cloudfront.net/video/thumbnail/DcMIsso/small-black-footsteps-walking-on-white-background_skgtorm7x_thumbnail-full01.png">
<h2><img src="https://images-eu.ssl-images-amazon.com/images/I/51dwvZ4---L.png" width="80px" height="80px">
</h2>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<ul class="nav navbar-nav">
<li class="active"><a href="#"> Home Page </a></li>
<!-- <li><a href="#"> Top Rated </a></li> -->
<li><a href="http://127.0.0.1:8080/favoritelist"> Favorite List </a></li>
<li><search /></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="/signUp"><span class="glyphicon glyphicon-user"></span> Sign Up </a></li>
<li><a href="/login"><span class="glyphicon glyphicon-log-in"></span> Login </a></li>
<li><a href="/logout"><span class="glyphicon glyphicon-log-out"></span> LogOut </a></li>
</ul>
</div>
</nav>
<!-- <> -->
<div class="container" style="width:100%;">
<div id="myCarousel" class="carousel slide" data-ride="carousel" >
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
<li data-target="#myCarousel" data-slide-to="3"></li>
</ol>
<!-- Wrapper for slides -->
<center>
<div class="carousel-inner">
<div class="item active">
<img src="https://hdqwalls.com/wallpapers/2017-the-lego-batman-movie-wallpaper.jpg" alt="Los Angeles" style="width:80%;">
</div>
<div class="item">
<img src="http://www.theurbancult.com/wp-content/uploads/2017/01/cover.jpg" alt="Chicago" style="width:80%;">
</div>
<div class="item">
<img src="https://i.pinimg.com/originals/2c/ee/12/2cee12434b4fb8c0db28deba8c50abea.png" alt="New york" style="width:80%;">
</div>
<div class="item">
<img src="https://qzprod.files.wordpress.com/2017/08/dark-tower-bf4175_comp_v0262-1015_srgb_rv2_rgb-e15021275049221.jpg?quality=80&strip=all" alt="New york" style="width:80%;">
</div>
</div>
</center>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<!-- <> -->
<app ng-app='myapp' />
<script src="public/components/app.js"></script>
<script src="public/components/search.js"></script>
<script src="public/components/entry.js"></script>
<script src="public/components/list.js"></script>
<script src="public/components/trailer.js"></script>
<script src="converter.js"></script>
</body>
</html>