-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplanner.html
More file actions
150 lines (125 loc) · 4.52 KB
/
planner.html
File metadata and controls
150 lines (125 loc) · 4.52 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css">
<title>Dinner planner</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css">
</head>
<body>
<div class="container-fluid">
<div class="row">
<header class="col-xs-12">
<h1>Dinner Planner</h1>
</header>
</div>
</div>
<div class="flex_container">
<div class="side" id="overview_dinner">
<div class="dinner">
<h3>My Dinner</h3>
<h1 id="demo"></h1>
<span>People #</span>
<span id="numberList" class="numberList"></span>
<button type="button" name="button" id="plusGuest"> <span class="glyphicon glyphicon-chevron-up"></span></button>
<button type="button" name="button" id="minusGuest"><span class="glyphicon glyphicon-chevron-down"></span></button>
</div>
<div class="order_details ">
<span>Dish Name</span>
<span>Cost</span>
</div>
<div class="price_list">
<p>SEK 0.00</p>
</div>
<button type="button" name="button" class="confirm" id="confirmation"> Confirm Dinner</button>
</div>
<div class="planning" id="planning">
<!-- <div class="plan_desc">
<h1>Toast</h1>
<img src="./images/toast.jpg" alt="toast image">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip </p>
<button type="button" name="button" class="deliver">Back to search</button>
</div> -->
<!-- <div class="plan_info">
<div class="plan_table">
<h1>INGREDIENTS FOR 3 PEOPLE</h1>
<table class="table">
<tr>
<td>2tbsp</td>
<td >olive oil</td>
<td >SEK</td>
<td >0.20</td>
</tr>
<tr>
<th>750g</th>
<td>lean beef mince</td>
<td>SEK</td>
<td>10.00</td>
</tr>
<tr>
<th scope="row">90g</th>
<td>pack rosciutto</td>
<td>SEK</td>
<td>15</td>
</tr>
<tr>
<th scope="row">100ml</th>
<td>tomato sauce</td>
<td>SEK</td>
<td>10.00</td>
</tr>
<tr>
<th scope="row">200ml</th>
<td>hot beef stock</td>
<td>SEK</td>
<td>20.00</td>
</tr>
<tr>
<th scope="row">300g</th>
<td>fresh pck lasagne sheets</td>
<td>SEK</td>
<td>5.00</td>
</tr>
<tr>
<th scope="row">125g</th>
<td>ball mozzarella</td>
<td>SEK</td>
<td>12.00</td>
</tr>
<tr>
<th scope="row">100ml</th>
<td>white sauce</td>
<td>SEK</td>
<td>5.00</td>
</tr>
</table>
<hr>
<button type="button" name="button" class="deliver">Add to menu</button>
<p>SEK 77.20</p>
</div>
</div> -->
<div class="plan_prep">
</div>
</div>
</div>
</div>
</body>
</html>
<!-- jQuery -->
<script src="https://code.jquery.com/jquery.js"></script>
<!-- Bootstrap JavaScript, needed if you want for instance tabs, models, popovers etc. -->
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script>
<!-- The application JavaScript code -->
<!-- The application JavaScript code -->
<script src="js/app.js"></script>
<script src="js/model/dinnerModel.js"></script>
<script src="js/view/exampleView.js"></script>
<script src="js/view/search.js"></script>
<script src="js/view/over.js"></script>
<script src="js/view/description.js"></script>
<script src="js/view/money.js"></script>
<script src="js/view/planner.js"></script>
<script src="js/view/first.js"></script>