-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplan.html
28 lines (26 loc) · 1.18 KB
/
plan.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Workout Plan Generator</title>
<link rel="stylesheet" href="plan.css">
<script src="plan.js" defer></script>
</head>
<body>
<div id="container">
<button id="plan-button" class="top-right-button" onclick="goToCaloriesPage()">Calories</button>
<button id="home-button" class="top-right-button" onclick="goToIndexPage()">Home</button>
<h1>Workout Plan Generator</h1>
<form id="workout-form">
<label for="days">How many days do you want to work out per week?</label>
<input type="number" id="days" name="days" min="1" max="7" required>
<label for="time">How much time do you have for each workout? (in minutes)</label>
<input type="number" id="time" name="time" min="30" max="240" required>
<button type="submit">Generate Plan</button>
</form>
<div id="workout-plan">
</div>
</div>
</body>
</html>