-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFINAL_PP3
More file actions
70 lines (56 loc) · 2.07 KB
/
Copy pathFINAL_PP3
File metadata and controls
70 lines (56 loc) · 2.07 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Production Problem</title>
</head>
<body>
<form action="http://bloomingdale.sat.iit.edu/kriedan/lab3formscript.php" method="POST">
<fieldset id="myinfo">
<legend>My Info</legend>
<label>First Name:<input type="text" name="first_name_field"></label><br /><br />
<label>Last Name:<input type="text" name="last_name_field"></label><br /><br />
<label>Phone Number:<input type="tel" name="phone_field"></label><br /><br />
<label>Email Address:<input type="tel" name="email_field"></label><br /><br />
<p id= "gender">
<label>Gender:</label>
<label><input type="radio" name="gender_field" checked value="Male"> Male</label>
<label><input type="radio" name="gender_field">Female</label>
</p>
<p id="age">
<label>Age: </label>
<select name="age_field">
<option selected disabled>Select Age</option>
<option value="Under 18">Under 18</option>
<option value="18-24">18-24</option>
<option value="25-34">25-34</option>
<option value="35-44">35-44</option>
<option value="45-54">45-54</option>
<option value="55-64">55-64</option>
<option value="65 and Over">65 and over</option>
</select>
</p>
</fieldset>
<br />
<fieldset id="availability">
<legend>My Availability</legend>
<input type="checkbox" name="available_field[]" value="Monday"/>Monday<br />
<input type="checkbox" name="available_field[]" value="Tuesday"/>Tuesday<br />
<input type="checkbox" name="available_field[]" value="Wednesday"/>Wednesday<br />
<input type="checkbox" name="available_field[]" value="Thursday"/>Thursday<br />
<input type="checkbox" name="available_field[]" value="Friday"/>Friday<br />
<input type="checkbox" name="available_field[]" value="Saturday"/>Saturday<br />
<input type="checkbox" name="available_field[]" value="Sunday"/>Sunday<br />
</fieldset>
<br />
<label>Comments:</label><br />
<textarea cols="60" rows="20" name="comments_field" id="commentarea"></textarea>
<br />
<p>
<input type="hidden" name="hidden_field" value="ozahid">
</p>
<input type="submit" value="Submit">
<br />
</form>
</body>
</html>