-
Notifications
You must be signed in to change notification settings - Fork 0
/
history.html
149 lines (149 loc) · 5.38 KB
/
history.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
<!DOCTYPE html>
<!--Mandy Tadros-->
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Workout Tracker</title>
<link rel="stylesheet" href="Semantic-UI-CSS-master/semantic.min.css">
<link rel="stylesheet" href="styles/styles.css">
<link rel="stylesheet" href="styles/ericmeyerResetHTML5.css">
<link rel="icon" href="images/favicon.ico" media="screen">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="modernizr.custom.05819.js"></script>
</head>
<body>
<div id="overlay-outer">
<nav id="navBar" class="topNav">
<div>
<a id="hamburgerMenu">☰</a>
<a href="history.html">Logbook</a>
<a href="profile.html">Profile</a>
</div>
</nav>
<div id="overlay-inner">
<main>
<div id="calHeader">
<span id="monthLabel"></span><br>
<span id="yearLabel"></span>
<i class="material-icons" id="previousMonth">arrow_back</i>
<i class="material-icons" id="nextMonth">arrow_forward</i>
</div>
<br>
<table id="calTable">
<thead>
<tr>
<th>Sun</th>
<th>Mon</th>
<th>Tues</th>
<th>Wed</th>
<th>Thurs</th>
<th>Fri</th>
<th>Sat</th>
</tr>
</thead>
<tbody>
<tr>
<td id="c0"></td>
<td id="c1"></td>
<td id="c2"></td>
<td id="c3"></td>
<td id="c4"></td>
<td id="c5"></td>
<td id="c6"></td>
</tr>
<tr>
<td id="c7"></td>
<td id="c8"></td>
<td id="c9"></td>
<td id="c10"></td>
<td id="c11"></td>
<td id="c12"></td>
<td id="c13"></td>
</tr>
<tr>
<td id="c14"></td>
<td id="c15"></td>
<td id="c16"></td>
<td id="c17"></td>
<td id="c18"></td>
<td id="c19"></td>
<td id="c20"></td>
</tr>
<tr>
<td id="c21"></td>
<td id="c22"></td>
<td id="c23"></td>
<td id="c24"></td>
<td id="c25"></td>
<td id="c26"></td>
<td id="c27"></td>
</tr>
<tr>
<td id="c28"></td>
<td id="c29"></td>
<td id="c30"></td>
<td id="c31"></td>
<td id="c32"></td>
<td id="c33"></td>
<td id="c34"></td>
</tr>
</tbody>
</table>
<br><br>
</main>
<div class="ui modal">
<i class="close icon"></i>
<div class="header">
Add Workout for <span id="thisDate"></span>
</div>
<div class="image content">
<div class="ui medium image">
<img src="images/kettlebell.jpg" alt="Kettlebell">
</div>
<div class="description">
<div class="ui header">You got this!</div>
<form class="ui form">
<select class="ui search dropdown" id="workoutCategory">
<option value="">Workout Category</option>
<option value="Barbell">Barbell Lifts</option>
<option value="Girls">Girls</option>
<option value="Heroes">Heroes</option>
<option value="Notables">Notables</option>
<option value="Gymnastics">Gymnastics</option>
<option value="Endurance">Endurance</option>
<option value="Games">Games</option>
<option value="CrossFit.com">CrossFit.com</option>
<option value="Benchmark">Gym Benchmarks</option>
</select>
<br/>
<div class="field">
<label>Description</label>
<textarea rows="4" cols="50" name="description" id="description" placeholder="Description"></textarea>
</div>
<div class="field">
<label>Score</label>
<input type="text" name="score" id="score" placeholder="Score">
</div>
</form>
</div>
</div>
<div class="actions">
<div class="ui reset button" id="addEventReset">
Reset
</div>
<div class="ui positive right labeled icon button" id="addEventSave">
Save
<i class="checkmark icon"></i>
</div>
</div>
</div>
</div><!--closes overlay-inner-->
</div><!--closes overlay-outer-->
<script src="Semantic-UI-CSS-master/semantic.js"></script>
<script src="hist.js"></script>
</body>
</html>