-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgender-inputs.html
64 lines (53 loc) · 1.71 KB
/
gender-inputs.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
<!DOCTYPE html>
<html>
<head>
<title>Gender Inputs</title>
</head>
<body>
<h1>Do you really, really need to collect gender information from your users? Why? Is it vital to operations, or just for addressing people in the newsletter?</h1>
<h3>Traditional Example #1</h3>
<select>
<option value="Female">Female</option>
<option value="Male">Male</option>
</select>
<h3>Traditional Example #2</h3>
<form>
<input type="radio" name="gender" value="male">
Male
<br>
<input type="radio" name="gender" value="female">
Female
<br>
<input type="radio" name="gender" value="other">
Other
</form>
<h1>After you've determined that you really, really need to collect gender information from users...</h1>
<h3>Alternative, Inclusive Example #1</h3>
<p style="font-style: italic;">*Note: Allow at least up to 30 characters</p>
<p style="font-style: italic;">*Optional</p>
Gender
<br/>
<span style="font-size: 12px;">We use this information to help select the most relevant content for our users.</span>
<br />
<input type="text" name="gender" style="padding-left: 5px;">
<h3>Alternative, Inclusive Example #2</h3>
<p>How would you like to be addressed?</p>
<input type="text" name="gender" style="padding-left: 5px;">
<h3>Alternative, Inclusive Example #2.5</h3>
<p>How would you like to be addressed?</p>
<select >
<option>Name</option>
<option>Mrs.</option>
<option>Mr.</option>
<option>Ms.</option>
<option>Professor</option>
<option>Dr.</option>
</select>
<br />
<br />
<input type="text" placeholder="Other" />
<p style="font-style: italic;">*Note: Maybe no character limits in case they type their last name, for example.</p>
<br />
<br />
</body>
</html>