-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWorkout.php
More file actions
86 lines (76 loc) · 1.77 KB
/
Workout.php
File metadata and controls
86 lines (76 loc) · 1.77 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
<html>
<head>
<title>Database connection </title>
<style>
body {
background-image: url(back5.jpg);
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% 100%;
opacity:1;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.glow {
font-size: 50px;
font-weight: bold;
color: white;
text-align: center;
position:relative;
margin-top: 100px;
text-shadow:
0 0 20px black,
0 0 30px blue,
0 0 40px skyblue,
0 0 50px skyblue,
0 0 60px skyblue,
0 0 70px skyblue,
0 0 80px skyblue;
}
.button {
background-color: transparent;
color: white;
padding: 4px 2px;
font-family: 'Courier New', Courier, monospace;
font-size: 40px;
margin-left: 80px;
margin-top: 50px;
text-shadow:
0 0 20px black,
0 0 30px yellowgreen,
0 0 40px yellow,
0 0 50px yellow;
}
form{
text-align: center;
font-family: 'Courier New', Courier, monospace;
font-size: 35px;
font-weight: bold;
position:relative;
color: white;
padding: 20px 40px;
}
img{
width:500px;
height:800px;
margin-left:400px;
position:absolute;
}
</style>
</head>
<body>
<hr>
<img src="backLogin.jpg">
<h1 class="glow"><u>Workout Plan</u></h1>
<form action="addNewWorkout.php" method="post">
<label for="MEMBER_ID">Member ID:</label><br>
<input type="text" id="MEMBER_ID" name="MEMBER_ID"><br><br>
<label for="TIME">Time(in minutes):</label><br>
<input type="text" id="TIME" name="TIME"><br><br>
<label for="BCAL">Calorie Burn Target:</label><br>
<input type="text" id="BCAL" name="BCAL"><br>
<br>
<br>
<input type="submit" value="Enter Values"/>
</form>
</body>
</html>