-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddnewclass.php
executable file
·86 lines (80 loc) · 2.02 KB
/
addnewclass.php
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
<?php
session_start();
echo session_id();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title>THE GYM</title>
<link rel="stylesheet" href="css/style.css" type="text/css" media="all" />
</head>
<body>
<!-- Header -->
<div id="header">
<div class="shell">
<!-- Logo + Top Nav -->
<div id="top">
<h1><a href="#">The Gym</a></h1>
<div id="top-navigation">
Welcome <a href="#"><strong>Administrator</strong></a>
<span>|</span>
<a href="#">Help</a>
<span>|</span>
<a href="#">Profile Settings</a>
<span>|</span>
<a href="logout.php">Log out</a>
</div>
</div>
<!-- End Logo + Top Nav -->
<!-- Main Nav -->
<div id="navigation">
<ul>
<li><a href="userinfo.php"><span>Dashboard</span></a></li>
<li><a href="membershipinfo.php"><span>Membership information</span></a></li>
<li><a href="addnewclass.php" class = "active"><span>Add new class</span></a></li>
</ul>
</div>
<!-- End Main Nav -->
</div>
</div>
<!-- End Header -->
<!-- Container -->
<div id="container">
<div class="shell">
<!-- Small Nav -->
<div class="small-nav">
<a href="#">Dashboard</a>
<span>></span>
Your Membership details
</div>
<!-- End Small Nav -->
<!-- Footer -->
<div id="footer">
<div class="shell">
<span class="left">© 2017 - THE GYM</span>
<span class="right">
</span>
</div>
</div>
<!-- End Footer -->
<form action = "addmembership.php" method = "POST">
<fieldset>
<legend> Join new class </legend>
<p>
<p>
<select name="formClass">
<option value="">Select Class</option>
<option value="Z">Zumba</option>
<option value="A">Aerobics</option>
<option value="W">Weight Lifting</option>
<option value="C">Cross</option>
</select>
</p>
<p>
<input type="submit" name = "submit" value = "Add">
</p>
</fieldset>
</form>
</body>
</html>