0
|
1 |
<html><body>
|
|
2 |
<h1>
|
|
3 |
The Green People Book Club
|
|
4 |
</h1>
|
|
5 |
|
|
6 |
<p>
|
|
7 |
Welcome to The Green People Book Club. Please register to obtain a membership with us.
|
|
8 |
</p>
|
|
9 |
<form onsubmit="formExtractor.submit()">
|
|
10 |
<table>
|
|
11 |
<tbody><tr>
|
|
12 |
<td>
|
|
13 |
First name:
|
|
14 |
</td>
|
|
15 |
<td>
|
|
16 |
<input type="text" id="firstname">
|
|
17 |
</td>
|
|
18 |
</tr>
|
|
19 |
<tr>
|
|
20 |
<td>
|
|
21 |
Last name:
|
|
22 |
</td>
|
|
23 |
<td>
|
|
24 |
<input type="text" id="lastname">
|
|
25 |
</td>
|
|
26 |
</tr>
|
|
27 |
<tr>
|
|
28 |
<td>
|
|
29 |
Gender:
|
|
30 |
</td>
|
|
31 |
<td>
|
|
32 |
<input type="radio" name="gender" id="genderMale" value="Male"> Male
|
|
33 |
<input type="radio" name="gender" id="genderFemale" value="Female"> Female
|
|
34 |
</td>
|
|
35 |
</tr>
|
|
36 |
<tr>
|
|
37 |
<td colspan="2">
|
|
38 |
<input type="checkbox" id="updates" value="receive">
|
|
39 |
Check here if you would like to receive regular updates from us:
|
|
40 |
</td>
|
|
41 |
</tr>
|
|
42 |
</tbody></table>
|
|
43 |
<input type="submit" value="Submit">
|
|
44 |
</form>
|
|
45 |
|
|
46 |
</body></html>
|