-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathselectDifficulty.php
More file actions
89 lines (84 loc) · 2.44 KB
/
selectDifficulty.php
File metadata and controls
89 lines (84 loc) · 2.44 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
<!DOCTYPE HTML>
<html>
<head>
<title>LivFit - Workout Planner</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="shortcut icon" href="images/ui/favicon.ico">
</head>
<body>
<?php include ("header.php"); ?>
<?php include ("nav.php"); ?>
<div id=content>
<img style="float: right;" src="images/icons/barbell.png"></img>
<h1>Select a Difficulty Level</h1>
<p>Select your workout difficulty properly. We give you three choices here!
<div class=clear></div>
<table id=week1 class=week>
<tr>
<td>
<div class=day>
<div id=day_title>
<p>Beginner</p>
</div>
<center>
<div>
<p>Gymming for the first time?<br>Start with this level!</p>
</div>
<div>
<form id="bdiff" name="bdiff" method="post" action="updateDifficulty.php">
Level <input type=text class=bmioutput name="beg" value="1" readonly>
<br />
<br />
<input class=button type=submit value=Beginner>
</form>
</div>
</div>
</div>
</center>
</td>
<td>
<div class=day>
<div id=day_title>
<p>Intermediate</p>
</div>
<center>
<div>
<p>You think you know about Gymming?<br/>Have you done it before?<br/>Start with this level!</p>
</div>
<div>
<form id="bdiff" name="bdiff" method="post" action="updateDifficulty.php">
Level <input type=text class=bmioutput name="int" value="2" readonly>
<br />
<br />
<input class=button type=submit value=Intermediate>
</form>
</div>
</center>
</div>
</td>
<td>
<div class=day>
<div id=day_title>
<p>Expert</p>
</div>
<center>
<div>
<p>So you think you're an expert?<br>Accept the challenge here!</p>
</div>
<div>
<form id="bdiff" name="bdiff" method="post" action="updateDifficulty.php">
Level <input type=text class=bmioutput name="exp" value="3" readonly>
<br />
<br />
<input class=button type=submit value=Expert>
</form>
</div>
</div>
</center>
</td>
</tr>
</table>
</div>
<?php include ("footer.php"); ?>
</body>
</html>