-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
70 lines (55 loc) · 2.03 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
<!DOCTYPE html>
<html>
<head>
<title>FeedMe</title>
<script src="resources/jquery-3.1.0.min.js"></script>
<link rel="stylesheet" type="text/css" href="resources/bootstrap/dist/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="resources/jquery.fullPage.css" />
<link rel="stylesheet" type="text/css" href="resources/style.css">
<script src="resources/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="app/Views/handelbars.js"></script>
<script src="app/Adapter/adapter.js"></script>
<script src="app/Models/recipeProfile.js"></script>
<script src="app/Models/recipeDetail.js"></script>
<script src="app/Controllers/RecipeProfilesController.js"></script>
<script src="resources/handlebars-v4.0.5.js"></script>
<script src="app/Controllers/FullDetialsController.js"></script>
<script src="resources/jquery.fullPage.js"></script>
<script src="fullpages.js"></script>
</head>
<body>
<header id="header">
<div id="header-image">
<image class="logo" src="resources/images/logo.png" ></image>
</div>
</header>
<div id="fullpage">
<div class="section jumbotron one">
<div class="row">
<div class="col-sm-8 col-sm-offset-1">
<form id="search_bar" class="text-center" onsubmit="searchRecipes();return false;">
<input type="text" id="searchedIngredients" placeholder="Enter your ingredients seperated by spaces." />
<span class="glyphicon glyphicon-search" aria-hidden="true"></span>
<input type="submit" value="Search" />
</form>
</div>
</div>
</div>
<div class="section two">
<!--jumbotron-->
<div id="displayTimes">
<!--template-->
</div>
</div>
<div class="section">
<div id="displayProfiles" class="container-fluid flexcontainer">
<!--template-->
</div>
</div>
<div class="section">
<div id="displayRecipe"></div>
<!--template-->
</div>
</div>
</body>
</html>