-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path8.9.html
51 lines (44 loc) · 1.1 KB
/
8.9.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
<!DOCTYPE html>
<html>
<head>
<title>
Forms
</title>
</head>
<body>
<center>
<h1>Sign Up Today!</h1>
<br>
<form action="formaction.php">
<label>Name: <input type="text" name="name"></label>
<br>
<br>
<label>Email: <input type="email" name="email"></label>
<br>
<label>Confirm Email: <input type="email" name="confemail"></label>
<br>
<br>
<label>Password: <input type="password" name="pass"></label>
<br>
<label>Confirm Password: <input type="password" name="confpass"></label>
<br>
<h4>How did hear about our wonderful service?</h4>
<select name="hearabout">
<option value="web">Web</option>
<option value="tv">TV</option>
<option value="email">Email</option>
</select>
<br>
<h4>Gender:</h4>
<input type="radio" name="gender" value="male" /> Male
<input type="radio" name="gender" value="female" /> Female
<br>
<label>Anything We Should Know About You: <br><textarea name="otherstuff" cols="30" rows="10">Preferences, etc.</textarea></label>
<br>
<input type="checkbox" name="signmeup" value="emails" /> Sign Me Up For Emails
<br>
<button type="submit" name="submitbutton">Submit</button>
</form>
</center>
</body>
</html>