-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
44 lines (42 loc) · 1.77 KB
/
signup.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
<!DOCTYPE html>
<html>
<head>
<title>Sign Up</title>
<link type="text/css" rel="stylesheet" href="stylesheet.css" />
</head>
<body>
<div align="center">
<h1>
New Members
</h1>
</div>
<div align="center">
<div style="margin:20px;width:200px;">
<form action="/PHP files/newaccount.php" method=POST>
<fieldset align="center">
First Name <input type="text" name="fName"/><br>
Last Name <input type="text" name="lName"/><br>
Email <input type="text" name="email"/><br>
Homeroom <input type="text" name="homeroom"/><br>
<fieldset style="margin:20px">
Grade <br>
<input type="radio" name="grade" value="9">9<br>
<input type="radio" name="grade" value="10">10<br>
<input type="radio" name="grade" value="11">11<br>
<input type="radio" name="grade" value="12">12<br>
</fieldset>
</fieldset>
<fieldset style="margin:20px">
Club <br>
<input type="radio" name="grade" value="9">9<br>
<input type="radio" name="grade" value="10">10<br>
<input type="radio" name="grade" value="11">11<br>
<input type="radio" name="grade" value="12">12<br>
</fieldset>
<input type="submit" value="Submit"/><br>
</fieldset>
</form>
</div>
</div>
</body>
</html>