-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (40 loc) · 1.5 KB
/
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
<!DOCTYPE html>
<html>
<title></title>
<head>
<link rel="stylesheet" href="css/layout.css" media="screen"/>
</head>
<body>
<div class="header">
<h1>Please sign into the Focarino house!</h1>
</div>
<div class="form">
<fieldset>
<legend>The Focarino Family Database</legend>
<form action="Register_Member.php" method="post">
<div class="textbox">
First Name: <input type="text" name="firstName"/>
</div>
<div class="textbox">
Last Name: <input type="text" name="lastName"/>
</div>
<div class="textbox">
BirthDate(Optional): <input type="text" name="birthDate"/>
</div>
<div class="textbox">
City: <input type="text" name="city"/>
</div>
<div class="textbox">
State: <input type="text" name="state"/>
</div>
<div id="submit">
<input type="submit" value="Send"/>
</div>
</form>
</fieldset>
<div id="updaterecord">
<a href="update_record.php"><h3>Fix an error in a record by clicking here.</h3></a>
</div>
</div>
</body>
</html>