-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsidebar.html
81 lines (80 loc) · 3.07 KB
/
sidebar.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://ssl.gstatic.com/docs/script/css/add-ons1.css">
<base target="_top">
</head>
<body>
<form>
<fieldset>
<legend>Choose the fields you want to know for your organizations</legend>
<select>
<option value="2011">2011</option>
<option value="2012">2012</option>
<option value="2013">2013</option>
<option value="2014">2014</option>
<option value="2015">2015</option>
</select>
<div>
<input type="checkbox" id="updated" name="field" value="updates">
<label for="updated">Date Updated</label>
</div>
<div>
<input type="checkbox" id="totrevenue" name="field" value="totrevenue">
<label for="totrevenue">Total Revenue</label>
</div>
<div>
<input type="checkbox" id="totfuncexpns" name="field" value="totfuncexpns">
<label for="totfuncexpns">Total Expenses</label>
</div>
<div>
<input type="checkbox" id="totassetsend" name="field" value="totassetsend">
<label for="totassetsend">Total Assets, end of year</label>
</div>
<div>
<input type="checkbox" id="totliabend" name="field" value="totliabend">
<label for="totliabend">Total Liabilities, end of year</label>
</div>
<div>
<input type="checkbox" id="pct_compnsatncurrofcr" name="field" value="pct_compnsatncurrofcr">
<label for="pct_compnsatncurrofcr">Percent of expenses marked as "Compensation of current officers, directors, etc"</label>
</div>
<div>
<input type="checkbox" id="name" name="field" value="name">
<label for="name">Name</label>
</div>
<div>
<input type="checkbox" id="sub_name" name="field" value="sub_name">
<label for="sub_name">Secondary Name, or alias</label>
</div>
<div>
<input type="checkbox" id="address" name="field" value="address">
<label for="address">Address</label>
</div>
<div>
<input type="checkbox" id="city" name="field" value="city">
<label for="city">City</label>
</div>
<div>
<input type="checkbox" id="state" name="field" value="state">
<label for="state">State</label>
</div>
<div>
<input type="checkbox" id="zipcode" name="field" value="zipcode">
<label for="zipcode">Zipcode</label>
</div>
<div>
<input type="checkbox" id="subseccd" name="field" value="subseccd">
<label for="subseccd">The subsection code (501(c)(___) or 4947(a)(1)) for the organization.</label>
</div>
<div>
<input type="checkbox" id="ntee_code" name="field" value="ntee_code">
<label for="ntee_code"> National Taxonomy of Exempt Entities (NTEE) category for this organization.</label>
</div>
<div>
<button type="submit">Populate!</button>
</div>
</fieldset>
</form>
</body>
</html>