forked from bfpepper/quantify-me
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
132 lines (131 loc) · 4.96 KB
/
index.html
File metadata and controls
132 lines (131 loc) · 4.96 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Quantified Self - Diary</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-2.2.4.min.js" />
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</head>
<body>
<div class="row">
<div class="panel col-md-4 col-md-offset-4">
<div id="decrease-date" class="btn btn-primary btn-xs"> - </div>
<div id="date"> </div>
<div id="increase-date" class="btn btn-primary btn-xs"> + </div>
</div>
</div>
<div class="row">
<div class="container panel col-md-4 col-md-offset-1">
<row class="table-header"><h4>Breakfast</h4></row>
<table id="diary-breakfast-table" class="breakfast-table table-hover table col-md-4">
<tr>
<th>Name</th>
<th>Calories</th>
</tr>
</table>
</div>
<div class="container panel col-md-4 col-md-offset-1">
<row class="table-header"><h4>Lunch</h4></row>
<table id="diary-lunch-table" class="lunch-table table-hover table col-md-4">
<tr>
<th>Name</th>
<th>Calories</th>
</tr>
</table>
</div>
</div>
<div class="row">
<div class="container panel col-md-4 col-md-offset-1">
<row class="table-header"><h4>Dinner</h4></row>
<table id="diary-dinner-table" class="dinner-table table-hover table col-md-4">
<tr>
<th>Name</th>
<th>Calories</th>
<th></th>
</tr>
</table>
</div>
<div class="container panel col-md-4 col-md-offset-1">
<row class="table-header"><h4>Snacks</h4></row>
<table id="diary-snacks-table" class="snacks-table table-hover table col-md-4">
<tr>
<th>Name</th>
<th>Calories</th>
</tr>
</table>
</div>
</div>
<div class="row">
<div class="container panel col-md-4 col-md-offset-1">
<row class="table-header"><h4>Exercise</h4></row>
<table id='diary-exercise-table' class="exercise-diary-table table-hover table col-md-4">
<tr>
<th>Name</th>
<th>Calories</th>
</tr>
</table>
</div>
<div class="container panel col-md-4 col-md-offset-1">
<row class="table-header"><h4>Totals</h4></row>
<table class="total-table table-hover table col-md-4">
<tr class="cal-totals-row">
<td>Goal Calories</td>
<td class="goal-calories">2000</td>
</tr>
<tr class="cal-totals-row">
<td>Calories Consumed</td>
<td id="calories-consumed"></td>
</tr>
<tr class="cal-totals-row">
<td>Calories Burned</td>
<td id="calories-burned"></td>
</tr>
<tr class="cal-totals-row">
<td>Remaining Calories</td>
<td id="remaining-calories"></td>
</tr>
</table>
</div>
</div>
<div class="container panel col-md-4 col-md-offset-1">
<row class="table-header"><h4>Foods</h4></row>
<div class="container-fluid">
<ul class='go-to-foods'><a href="./foods.html" class="btn btn-primary btn-xs">Create New</a></ul>
<p>Add Selected To:</p>
<ul id='breakfast-button' class="btn btn-primary btn-xs">Breakfast</ul>
<ul id='lunch-button' class="btn btn-primary btn-xs">Lunch</ul>
<ul id='dinner-button' class="btn btn-primary btn-xs">Dinner</ul>
<ul id='snacks-button' class="btn btn-primary btn-xs">Snacks</ul></br>
Filter by Name</br>
<input id='filter-foods-table' type='text'>
</div>
<table id="foods-diary-table" class="table-hover table col-md-4">
<tr>
<th></th>
<th>Name</th>
<th id="food-calorie" class="original-cal">Calories</th>
</tr>
</table>
</div>
<div class="container panel col-md-4 col-md-offset-1">
<row class="table-header"><h4>Exercises</h4></row>
<div class="container-fluid">
<ul class='go-to-exercises'><a href="./exercises.html" class="btn btn-primary btn-xs">Create New</a></ul>
<p>Add Selected To:</p>
<ul id='exercises-button' class="btn btn-primary btn-xs">Exercises</ul></br>
Filter by Name</br>
<input id='filter-exercises-table' type='text'>
</div>
<table id='exercises-diary-table' class="table-hover table col-md-4">
<tr>
<th></th>
<th>Name</th>
<th id="exercise-calorie" class="original-cal">Calories</th>
</tr>
</table>
</div>
<script src="main.bundle.js"></script>
</body>
</html>