-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainPage.html
170 lines (111 loc) · 3.35 KB
/
MainPage.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
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!DOCTYPE html>
<html lang="en">
<html>
<head>
<title>Home</title>
<link href="./css/bootstrap.css" rel="stylesheet">
<style>
body {
padding-top: 60px;
}
@media (max-width: 979px) {
body {
padding-top: 0px;
}
}
/*.container3
{
width:1600px;
}
.container1{
float:left;
width: 800px;
}
.container2{
float:left;
width: 800px;
}*/
.errordisplay{
text-align: center;
color: red;
}
</style>
</head>
<body>
<!-- This is the NAV BAR at the top of the page-->
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="collapse navbar-collapse">
<form class="navbar-form navbar-right" role="form">
<button type="submit" class="btn btn-success" style="font-family: verdana;">Log Out</button>
</form>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<form style="background-color:grey; padding:20px; float:right; width:450px">
<input style="padding:7px;" type="text" placeholder="Add Items" name="Add-Item">
<select style="padding:6px">
<option value="Breakfast">Breakfast</option>
<option value="Lunch">Lunch</option>
<option value="Snacks">Snacks</option>
<option value="Dinner">Dinner</option>
</select>
<button type="submit" style="padding:6px;"> Submit</button>
</form>
</div>
</div>
</div>
<br>
<br>
<div class="row errordisplay col-lg-offset-4">
<p class="well col-lg-6" style="padding:2px 0;">Baba, Please enter a value</p>
</div>
<div class="container" >
<div class="row">
<div class="col-lg-3">
<div class="well">
<h2>Breakfast</h2>
<div class="well" style="padding:5px;">
<button style="align:left;" type="button" class="btn btn-default btn-lg">
<span class="glyphicon glyphicon-hand-up"> </span>
</button>
</div>
</div>
</div>
<div class="col-lg-3">
<div class="well">
<h2>Lunch</h2>
<div class="well" style="padding:5px;">
<button style="align:left;" type="button" class="btn btn-default btn-lg">
<span class="glyphicon glyphicon-hand-up"> </span>
</button>
</div>
</div>
</div>
<div class="col-lg-3">
<div class="well">
<h2>Snacks</h2>
<div class="well" style="padding:5px;">
<button style="align:left;" type="button" class="btn btn-default btn-lg">
<span class="glyphicon glyphicon-hand-up"> </span>
</button>
</div>
</div>
</div>
<div class="col-lg-3">
<div class="well">
<h2>Dinner</h2>
<div class="well" style="padding:5px;">
<button style="align:left;" type="button" class="btn btn-default btn-lg">
<span class="glyphicon glyphicon-hand-up"> </span>
</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>