This repository was archived by the owner on Sep 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm2.html
More file actions
41 lines (35 loc) · 1.48 KB
/
Form2.html
File metadata and controls
41 lines (35 loc) · 1.48 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
<!DOCTYPE html>
<p><small>120 Barrington Ave.</small></p><br>
<p><small></small>East Dundee, IL, 60118.</small></p>
<br>
<h1>Freedom of Information Act (FOIA) Request Form</h1>
<form>
<label for="name">Name</label>
<input type="text" id="name" name="name">
<label for="phone">Phone</label>
<input type="number" id="phone" name="phone">
<label for="currdate">Date</label>
<input type="date" id="currdate" name="currdate"><br>
<label for="address">Address</label>
<input type="text" id="address" name="address">
<label for="city">City</label>
<input type="text" id="city" name="city">
<label for="state">State</label>
<input type="text" id="state" name="state">
<label for="zip">Zip</label>
<input type="number" id="zip" name="zip"><br>
<label for="email">Email</label>
<input type="email" id="email" name="email"><br>
<label for="records">Records Requested</label>
<textarea name="request" rows="5" cols="30"></textarea><br>
<p>Is this request for a commercial purpose?</p>
<input type="radio" id="yes" name="yes" value="Yes">
<label for="yes">Yes</label><br>
<input type="radio" id="no" name="no" value="No">
<label for="no">No</label><br>
<p>Are you requesting a fee waiver?</p>
<input type="radio" id="yes" name="yes" value="Yes">
<label for="yes">Yes</label><br>
<input type="radio" id="no" name="no" value="No">
<label for="no">No</label><br>
</form>