This repository has been archived by the owner on Jun 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathquiz.html
289 lines (220 loc) · 11.1 KB
/
quiz.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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Take the Political Triangle Test!</title>
<link rel="icon" type="image/svg+xml" href="favicon.svg">
<link rel='stylesheet' type='text/css' href='assets/style/main.css'/>
<script src="assets/js/quiz.js"></script>
</head>
<body>
<script src="assets/js/header.js"></script>
<div id="content">
<h1>Take the Political Triangle Test!</h1>
<p>For each question, select the option you agree with the most. Once you finish the test, it will plot your position on the triangle based on your answers, between Libertarian, Left, and Right.</p><br>
<div class="question" id="q1">
<h2>1. What should be the government's first priority when spending tax dollars?</h2>
<input type="radio" name="s1" value="Neutral">
No opinion, or don't agree with any of the options (even remotely).
<br>
<input type="radio" name="s1" value="Left1">
To provide social services to the poor.
<br>
<input type="radio" name="s1" value="Left2">
To provide everything people need.
<br>
<input type="radio" name="s1" value="Lib1">
Basic necessities, such as police, courts, and emergency services.
<br>
<input type="radio" name="s1" value="Lib2">
Taxation is theft; the state should not be allowed to forcibly tax its citizens.
<br>
<input type="radio" name="s1" value="Right1">
To fund a strong military and police force.
<br>
<input type="radio" name="s1" value="Right2">
The needs and wants of the monarch or dictator
<br>
</div>
<div class="question" id="q2">
<h2>2. How should minorities be treated?</h2>
<input type="radio" name="s2" value="Neutral">
No opinion, or don't agree with any of the options (even remotely).
<br>
<input type="radio" name="s2" value="Left1">
The state should utilize affirmative action.
<br>
<input type="radio" name="s2" value="Lib1">
Minorities should have the same rights as everyone else.
<br>
<input type="radio" name="s2" value="Right1">
They should be actively oppressed by the state.
<br>
</div>
<div class="question" id="q3">
<h2>3. How should businesses be regulated?</h2>
<input type="radio" name="s3" value="Neutral">
No opinion, or don't agree with any of the options (even remotely).
<br>
<input type="radio" name="s3" value="Left1">
The government should make sure workers are treated well, sufficiently paid, and can unionize.
<br>
<input type="radio" name="s3" value="Left2">
The government should directly own and control the means of production.
<br>
<input type="radio" name="s3" value="Lib1">
Minimally, with only the most necessary regulations being implemented.
<br>
<input type="radio" name="s3" value="Lib2">
Businesses should not be regulated, except to protect property rights.
<br>
<input type="radio" name="s3" value="Right1">
We need strong tariffs to protect domestic industry.
<br>
<input type="radio" name="s3" value="Right2">
The government should not protect the weak at the expense of the strong.
<br>
</div>
<div class="question" id="q4">
<h2>4. How should we deal with discrimination?</h2>
<input type="radio" name="s4" value="Neutral">
No opinion, or don't agree with any of the options (even remotely).
<br>
<input type="radio" name="s4" value="Left1">
Discrimination should be illegal.
<br>
<input type="radio" name="s4" value="Lib1">
Individuals and businesses should be allowed to freely associate as they please.
<br>
<input type="radio" name="s4" value="Right1">
Minorities should be segregated by law.
<br>
</div>
<div class="question" id="q5">
<h2>5. What kind of speech, if any, should be regulated?</h2>
<input type="radio" name="s5" value="Neutral">
No opinion, or don't agree with any of the options (even remotely).
<br>
<input type="radio" name="s5" value="Left2">
Hateful or politically incorrect speech should be banned.
<br>
<input type="radio" name="s5" value="Lib2">
None, all censorship is bad.
<br>
<input type="radio" name="s5" value="Right2">
Pornography and other obscene material should be banned.
<br>
</div>
<div class="question" id="q6">
<h2>6. How should the government deal with crime (in most cases)?</h2>
<input type="radio" name="s6" value="Neutral">
No opinion, or don't agree with any of the options (even remotely).
<br>
<input type="radio" name="s6" value="Left1">
Rehabilitation should be prioritized over punishment.
<br>
<input type="radio" name="s6" value="Left2">
Criminals should be forced to work in government-owned labor-camps.
<br>
<input type="radio" name="s6" value="Lib1">
Criminals should just be fined and let go.
<br>
<input type="radio" name="s6" value="Lib2">
Crimes should be stopped, but criminals shouldn't be prosecuted.
<br>
<input type="radio" name="s6" value="Right1">
Punishment should be prioritized over rehabilitation.
<br>
<input type="radio" name="s6" value="Right2">
Criminals should be brutally tortured to death in public.
<br>
</div>
<div class="question" id="q7">
<h2>7. What is your stance on immigration and borders?</h2>
<input type="radio" name="s7" value="Neutral">
No opinion, or don't agree with any of the options (even remotely).
<br>
<input type="radio" name="s7" value="Left1">
We should prioritize refugees fleeing from poverty or persecution.
<br>
<input type="radio" name="s7" value="Lib1">
Borders should be abolished, and anyone should be allowed to come and go as they please.
<br>
<input type="radio" name="s7" value="Right1">
We should prioritize immigrants who learn our language or have family born here.
<br>
</div>
<div class="question" id="q8">
<h2>8. What is your ideal form of government?</h2>
<input type="radio" name="s8" value="Neutral">
No opinion, or don't agree with any of the options (even remotely).
<br>
<input type="radio" name="s8" value="Left1">
Socialism: the government should step in to protect workers from exploitation.
<br>
<input type="radio" name="s8" value="Left2">
Communism: the government should own the means of production and provide everything people need.
<br>
<input type="radio" name="s8" value="Lib1">
Minarchism: the government should be as small as possible.
<br>
<input type="radio" name="s8" value="Lib2">
Anarchism: the government should not exist.
<br>
<input type="radio" name="s8" value="Right1">
Corporatism: national well-being should be prioritized over class conflict.
<br>
<input type="radio" name="s8" value="Right2">
Fascism: authority figures should dictate the path of the Nation.
<br>
</div>
<div class="question" id="q9">
<h2>9. What is most important?</h2>
<input type="radio" name="s9" value="Neutral">
No opinion, or don't agree with any of the options (even remotely).
<br>
<input type="radio" name="s9" value="Left2">
Equality and making sure everyone has their needs met.
<br>
<input type="radio" name="s9" value="Lib2">
Individual rights and freedoms.
<br>
<input type="radio" name="s9" value="Right2">
Preserving our culture and values.
<br>
</div>
<div class="question" id="q10">
<h2>10. What sorts of non-violent actions, if any, should be criminalized?</h2>
<input type="radio" name="s10" value="Neutral">
No opinion, or don't agree with any of the options (even remotely).
<br>
<input type="radio" name="s10" value="Left2">
Aquiring private property or exploiting others.
<br>
<input type="radio" name="s10" value="Lib2">
None, only actions which infringe upon the liberty of others should be illegal.
<br>
<input type="radio" name="s10" value="Right2">
Immoral or obscene acts, such as drug use or vulgar behavior.
<br>
</div>
<div class="question" id="q11">
<h2>11. How should people be educated?</h2>
<input type="radio" name="s11" value="Neutral">
No opinion, or don't agree with any of the options (even remotely).
<br>
<input type="radio" name="s11" value="Left1">
The government should provide free education to everyone.
<br>
<input type="radio" name="s11" value="Lib1">
Taxpayers have no duty to pay for the education of others.
<br>
<input type="radio" name="s11" value="Right1">
Only certain classes should be educated.
<br>
</div>
<div class="centered"><button class="submit-button" id="submit" onclick="calculateScore();">Let's see your results!</button></div>
</div>
<script src="assets/js/footer.js"></script>
</body>
</html>