forked from dzenis-h/Calorie_Tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (100 loc) · 3.45 KB
/
Copy pathindex.html
File metadata and controls
104 lines (100 loc) · 3.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css"
/>
<link
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css?family=Indie+Flower"
rel="stylesheet"
/>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<link rel="stylesheet" href="style.css" />
<title>Bigga CT ™| Meal & Calorie Tracker</title>
</head>
<body>
<!-- Navbar -->
<nav>
<div class="nav-wrapper light-green darken-4 z-depth-2">
<div class="container">
<h5 class="brand-logo left black-text">
<span class="white-text accent-3 y-depth-3">
<em style="font-family: 'Indie Flower', cursive;">Bigga CT </em
>™</span
>
</h5>
<ul class="right">
<li>
<a href="#" class="clear-btn btn #4caf50 green">Clear All</a>
</li>
</ul>
</div>
</div>
</nav>
<br />
<div class="container">
<!-- Form Card -->
<div class="card">
<div class="card-content">
<span class="card-title center">Add Meal ➖ Add Calories</span>
<form class="col">
<div class="row">
<div class="input-field col s6">
<input type="text" placeholder="Add Item" id="item-name" />
<label for="item-name">Meal</label>
</div>
<div class="input-field col s6">
<input
type="number"
placeholder="Add Calories"
id="item-calories"
/>
<label for="item-calories">Calories</label>
</div>
<button
class="add-btn btn #43a047 green darken-2 btn-floating btn-large pulse"
>
<i class="fa fa-plus"></i>
</button>
<button class="update-btn btn orange">
<i class="fa fa-pencil-square-o"></i> Update Meal
</button>
<button class="delete-btn btn red">
<i class="fa fa-remove"></i> Delete Meal
</button>
<button class="back-btn btn grey pull-right">
<i class="fa fa-chevron-circle-left"></i> Back
</button>
</div>
</form>
</div>
</div>
<!-- Calorie Count -->
<h3 class="center-align black-text">
Total Calories:
<span class="total-calories #1b5e20 green-text darken-4"
><strong>0</strong></span
>
</h3>
<!-- Item List -->
<ul id="item-list" class="collection"></ul>
</div>
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"
></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js"></script>
<script src="app.js"></script>
</body>
</html>