-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproj_index.html
67 lines (58 loc) · 1.96 KB
/
proj_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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body
{
background-image: url('proj_index.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% 100%;
}
input[type=submit] {
width: 30%;
text-align: center;
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
cursor: pointer;
}
input[type=submit]:hover {
background-color: #45a049;
}
.center {
display: flex;
justify-content: center;
align-items: center;
height: 80px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
</style>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body style="background-color:rgb(147, 180, 150);">
<h1 class="center" ><b>FIT-ME INDEX PAGE</b></h1>
<form action="log_form.php" method="">
<div class="center"><input type="submit" name="button" value="Log Form"></div>
</form>
<form action="workout_plan_form.php" method="">
<div class="center" ><input type="submit" name="button" value="Workout Plan Form"></div>
</form>
<form action="report1.php" method="POST">
<div class="center" ><input type="submit" name="button" value="Diet Plan Report"></div>
</form>
<form action="report2.php" method="POST">
<div class="center" ><input type="submit" name="button" value="Exercise Report"></div>
</form>
<form action="report3.php" method="POST">
<div class="center" ><input type="submit" name="button" value="Personalize Plan"></div>
</form>
</body>
</html>