-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnewWorkout.html
More file actions
88 lines (82 loc) · 2.7 KB
/
newWorkout.html
File metadata and controls
88 lines (82 loc) · 2.7 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="styles.css" title="css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css">
<title>Cerulean Connect</title>
</head>
<body>
<header>
<img src="Cascade_Badge.png" width="200" height ="150" alt="Badge of Cerulean City" class="animated infinite pulse faster delay-2s" />
<h2 class="animated infinite heartBeat slow delay-2s">Cerulean Connect</h2>
</header>
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="workoutRepository.html">Workout Repository</a></li>
<li><a class="active" href="newWorkout.html">New Workout</a></li>
</ul>
<div class="container">
<form name ="workoutUploader" id="workoutUploader" method="post" action="createWorkout.php">
<h2 align="center">Upload Workout</h2>
<div class="row">
<div class="col-25">
<label for="userNum">userNum</label>
</div>
<div class="col-75">
<input type="number" id="userNum" name="userNum" placeholder="User ID#" >
</div>
</div>
<div class="row">
<div class="col-25">
<label for="workoutType">Workout Type</label>
</div>
<div class="col-75">
<select id="workoutType" name ="workoutType">
<option value="Cycling">Cycling</option>
<option value="Running">Running</option>
</select>
</div>
</div>
<div class="row">
<div class="col-25">
<label for="distance">Distance (Miles)</label>
</div>
<div class="col-75">
<input type="number" id="distance" name="distance" step= "0.01" min=".01" placeholder="Distance of workout" required>
</div>
</div>
<div class="row">
<div class="col-25">
<label for="duration">Duration</label>
</div>
<div class="col-75">
<input type="number" id="duration" name="duration" placeholder="Duration of Workout" required>
</div>
</div>
<div class="row">
<div class="col-25">
<label for="maxHR">Max HR</label>
</div>
<div class="col-75">
<input type="number" id="maxHR" name="maxHR" min="10" max="180" placeholder="Maximum HR during workout" required>
</div>
</div>
<div class="row">
<div class="col-25">
<label for="avgHR">Avg HR</label>
</div>
<div class="col-75">
<input type="number" id="avgHR" name="avgHR" min="10" max="180" placeholder="Average HR during workout" required>
</div>
</div>
<div class="row">
<input class="animated jackInTheBox slow delay-1s" type="submit" value="Submit">
</div>
</form>
</div>
<footer>
<a href="https://usafa-compsci364.github.io/Spring2020/assignments/project/website.html">Project Webpage Assignment</a>
</footer>
</body>
</html>