-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
196 lines (196 loc) · 6.73 KB
/
index.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Hall of Gender Forms</title>
<link rel="stylesheet" type="text/css" href="https://unpkg.com/[email protected]/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="https://unpkg.com/[email protected]/css/bulma.css">
</head>
<body>
<section class="section hero is-info" id="header">
<div class="hero-body">
<div class="container">
<h1 class="title">
Hall of Gender Forms
</h1>
<h2 class="subtitle">
A collection of approaches.
</h2>
</div>
</div>
</section>
<section class="section">
<div class="container" id="bad-approach">
<div class="notification is-danger">
<h3 class="title">
This is a bad approach.
</h3>
</div>
<div class="box">
<div class="field">
<label class="label">Select a gender:</label>
<div class="control">
<button class="button">Male</button>
<button class="button">Female</button>
</div>
</div>
</div>
<div class="content">
<p>
It is a bad approach because gender is not a binary state.
(Please get over it.)
</p>
</div>
<article class="message is-warning">
<div class="message-header">
<p>
"But it's a boolean in the database! A migration would be unthinkable!"
</p>
</div>
<div class="message-body">
So whatcha gonna tell
<a href="http://www.npr.org/sections/thetwo-way/2017/06/16/533207483/oregon-adds-a-new-gender-option-to-its-driver-s-licenses-x">the state of Oregon</a>
when their contract's on the line?
How about
<a href="http://time.com/4915330/canada-passports-gender-x-option/">Canada</a>?
</div>
</article>
</div>
</section>
<section class="section">
<div class="container" id="worse-approach">
<div class="notification is-danger">
<h3 class="title">
This is worse.
</h3>
</div>
<div class="box">
<div class="field">
<label class="label">Select a gender:</label>
<div class="control">
<button class="button">Male</button>
<button class="button">Female</button>
<button class="button">Transgendered</button>
</div>
</div>
</div>
<div class="content">
<p>
Trans people are not a special case.
</p>
</div>
<article class="message is-warning">
<div class="message-header">
<p>
"Well, we really just want to know which kind of junk you have."
</p>
</div>
<div class="message-body">
If you mean to be asking about someone's sex, mind you that it isn't a binary either. The scope of sexual polymorphism in humans is vast and little understood.
</div>
</article>
</div>
</section>
<section class="section">
<div class="container" id="not-better-approach">
<div class="notification is-warning">
<h3 class="title">
You cannot beat this problem with long lists.
</h3>
</div>
<div class="box">
<div class="field">
<label class="label">Select a gender:</label>
<div class="control">
<button class="button">Agender</button>
<button class="button">Androgyne</button>
<button class="button">Androgynous</button>
<button class="button">Bigender</button>
<button class="button">Cis Female</button>
<button class="button">Cis Feminine</button>
<button class="button">Cis Male</button>
<button class="button">Cis Masculine</button>
<button class="button">Cis Woman</button>
<button class="button">Demigirl</button>
<button class="button">Demiguy</button>
<button class="button">Female</button>
<button class="button">Feminine</button>
<button class="button">Femme</button>
<button class="button">Genderqueer</button>
<button class="button">Genderweird</button>
<button class="button">Gender Fluid</button>
<button class="button">Intergender</button>
<button class="button">Intersex</button>
<button class="button">Male</button>
<button class="button">Man</button>
<button class="button">Masculine</button>
<button class="button">Neutrois</button>
<button class="button">Nonbinary</button>
<button class="button">Other</button>
<button class="button">Pangender</button>
<button class="button">Third Gender</button>
<button class="button">Trans Female</button>
<button class="button">Trans Male</button>
<button class="button">Trans Man</button>
<button class="button">Trans Feminine</button>
<button class="button">Trans Femme</button>
<button class="button">Trans Woman</button>
<button class="button">Woman</button>
</div>
</div>
</div>
<div class="content">
<p>
Gender is indeterminate.
</p>
</div>
</div>
</section>
<section class="section">
<div class="container" id="getting-better">
<div class="notification is-success">
<h3 class="title">
A person must speak for themselves.
</h3>
</div>
<div class="box">
<div class="field">
<label class="label">Please enter your gender:</label>
<div class="control">
<input class="input" type="text" placeholder="However you can manage to express it, friendo.">
</div>
</div>
</div>
<div class="content">
<p>
Accept that anything is possible.
</p>
</div>
<article class="message is-info">
<div class="message-header">
<p>
"What about attackers with a gigabyte of gender?"
</p>
</div>
<div class="message-body">
Set a maximum length of a few hundred characters. Who cares? Disk is cheap.
</div>
</article>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="content has-text-centered">
<p>
<strong>Hall of Gender Forms</strong>
by
<a href="https://github.com/garbados/">Diana Thayer</a>
|
<a href="https://github.com/garbados/hall-of-gender-forms">Source</a>
</p>
</div>
</div>
</footer>
</body>
</html>