-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (49 loc) · 1.52 KB
/
index.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
<!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/semantic-ui/2.4.1/semantic.min.css"
/>
<link rel="stylesheet" href="style.css" />
<title>Fitness Tracker</title>
</head>
<body>
<nav>
<a href="/">Fitness Tracker</a>
<a href="/stats">Dashboard</a>
</nav>
<div class="wrapper workout">
<header>
<h1>Fitness Tracker</h1>
</header>
<div class="ui container workout">
<div class="ui raised card m-auto">
<div class="prev-workout">
<h3>Last Workout</h3>
<div>
<div class="workout-stats"></div>
<div class="buttons">
<a href="/exercise?" class="huge ui blue button">Continue Workout</a>
<a href="/exercise" class="huge positive ui button">New Workout</a>
</div>
</div>
</div>
<div class="new-workout">
<h3>Create Your First Workout</h3>
</div>
</div>
</div>
</div>
</div>
<div id="toast">
Workout Added Successfully!
</div>
<script src="/api.js"></script>
<script src="/workout.js"></script>
<script src="/index.js"></script>
</body>
</html>