-
Notifications
You must be signed in to change notification settings - Fork 0
/
addSwimmerFamily.php
54 lines (46 loc) · 926 Bytes
/
addSwimmerFamily.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
<?php
session_start();
include('header.php');
?>
<html>
<body>
<?php
include('siteNavigator.php');
?>
<!-- Page info goes below-->
<h1>Add Swimmer</h1>
<h2>Here, you can add a swimmer to your family.</h2>
<form action = "addSwimmerFamilyController.php" method = "post">
<table border="0">
<tr>
<tr>
<td>First Name </td>
<td><input type = "text" name = "swimmerFirstName" /></td>
</tr>
<tr>
<td>Middle Initial </td>
<td><input type = "text" name = "swimmerMiddleInitial" /></td>
</tr>
<tr>
<td>Last Name </td>
<td><input type = "text" name = "swimmerLastName" /></td>
</tr>
<tr>
<td>Birthday (yyyy-mm-dd) </td>
<td><input type = "text" name = "birthday" /></td>
</tr>
<tr>
<td>Swim Group</td>
<td><input type = "text" name = "swimGroup" /></td>
</tr>
<tr>
<td><input type = "submit" value = "Add Swimmer"/></td>
</tr>
</table>
</form>
</div> <!-- Page info goes above-->
<?php
include('footer.php');
?>
</body>
</html>