-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsearch.html
More file actions
574 lines (556 loc) · 31.5 KB
/
Copy pathsearch.html
File metadata and controls
574 lines (556 loc) · 31.5 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
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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Search Symptoms</title>
<script src="https://kit.fontawesome.com/c8b84544a4.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Assistant:wght@200;300&display=swap" rel="stylesheet">
</head>
<body class="ombre">
<p id="demo"></p>
<h1>We're sorry to hear that</h1>
<h1 class="longline">Let us know your symptoms below and we will provide you with an unofficial diagnosis</h1>
<a href="#symptoms"><button type="button" class="start">Let's start!</button></a>
<p></p>
<i class="fas fa-chevron-down"></i>
<div id='symptoms'>
<h1>Symptoms Search</h1>
<h4>Choose up to 3 symptoms</h4>
<img class="searchicon" src="loupe.png">
<input type="text" id="myInput" onkeyup="myFunction()">
<button type="button" id="btn" onclick="getDiseases()" class="submit">Submit</button>
<ul id="myUL">
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="abdominal_pain" onclick="return ValidateSymptomSelection();">
<label for="abdominal pain">abdominal pain</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="abnormal_menstruation" onclick="return ValidateSymptomSelection();">
<label for="abnormal menstruation">abnormal menstruation</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="acidity" onclick="return ValidateSymptomSelection();">
<label for="acidity">acidity</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="acute_liver_failure" onclick="return ValidateSymptomSelection();">
<label for="acute liver failure">acute liver failure</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="altered_sensorium" onclick="return ValidateSymptomSelection();">
<label for="altered sensorium">altered sensorium</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="anxiety" onclick="return ValidateSymptomSelection();">
<label for="anxiety">anxiety</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="back_pain" onclick="return ValidateSymptomSelection();">
<label for="back pain">back pain</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="belly_pain" onclick="return ValidateSymptomSelection();">
<label for="belly pain">belly pain</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="blackheads" onclick="return ValidateSymptomSelection();">
<label for="blackheads">blackheads</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="bladder_discomfort" onclick="return ValidateSymptomSelection();">
<label for="bladder discomfort">bladder discomfort</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="blister" onclick="return ValidateSymptomSelection();">
<label for="blister">blister</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="blood_in_sputum" onclick="return ValidateSymptomSelection();">
<label for="blood in sputum">blood in sputum</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="bloody_stool" onclick="return ValidateSymptomSelection();">
<label for="bloody stool">bloody stool</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="blurred_and_distorted_vision" onclick="return ValidateSymptomSelection();">
<label for="blurred and distorted vision">blurred and distorted vision</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="breathlessness" onclick="return ValidateSymptomSelection();">
<label for="breathlessness">breathlessness</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="brittle_nails" onclick="return ValidateSymptomSelection();">
<label for="brittle nails">brittle nails</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="bruising" onclick="return ValidateSymptomSelection();">
<label for="bruising">bruising</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="burning_micturition" onclick="return ValidateSymptomSelection();">
<label for="burning micturition">burning micturition</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="chest_pain" onclick="return ValidateSymptomSelection();">
<label for="chest pain">chest pain</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="chills" onclick="return ValidateSymptomSelection();">
<label for="chills">chills</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="cold_hands_and_feets" onclick="return ValidateSymptomSelection();">
<label for="cold hands and feets">cold hands and feets</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="coma" onclick="return ValidateSymptomSelection();">
<label for="coma">coma</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="congestion" onclick="return ValidateSymptomSelection();">
<label for="congestion">congestion</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="constipation" onclick="return ValidateSymptomSelection();">
<label for="constipation">constipation</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="continuous_feel_of_urine" onclick="return ValidateSymptomSelection();">
<label for="continuous feel of urine">continuous feel of urine</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="continuous_sneezing" onclick="return ValidateSymptomSelection();">
<label for="continuous sneezing">continuous sneezing</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="cough" onclick="return ValidateSymptomSelection();">
<label for="cough">cough</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="cramps" onclick="return ValidateSymptomSelection();">
<label for="cramps">cramps</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="dark_urine" onclick="return ValidateSymptomSelection();">
<label for="dark urine">dark urine</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="dehydration" onclick="return ValidateSymptomSelection();">
<label for="dehydration">dehydration</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="depression" onclick="return ValidateSymptomSelection();">
<label for="depression">depression</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="diarrhea" onclick="return ValidateSymptomSelection();">
<label for="diarrhea">diarrhea</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="dischromic_patches" onclick="return ValidateSymptomSelection();">
<label for="dischromic patches">dischromic patches</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="distention_of_abdomen" onclick="return ValidateSymptomSelection();">
<label for="distention of abdomen">distention of abdomen</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="dizziness" onclick="return ValidateSymptomSelection();">
<label for="dizziness">dizziness</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="drying_and_tingling_lips" onclick="return ValidateSymptomSelection();">
<label for="drying and tingling lips">drying and tingling lips</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="enlarged_thyroid" onclick="return ValidateSymptomSelection();">
<label for="enlarged thyroid">enlarged thyroid</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="excessive_hunger" onclick="return ValidateSymptomSelection();">
<label for="excessive hunger">excessive hunger</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="extra_marital_contacts" onclick="return ValidateSymptomSelection();">
<label for="extra marital contacts">extra marital contacts</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="family_history" onclick="return ValidateSymptomSelection();">
<label for="family history">family history</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="fast_heart_rate" onclick="return ValidateSymptomSelection();">
<label for="fast heart rate">fast heart rate</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="fatigue" onclick="return ValidateSymptomSelection();">
<label for="fatigue">fatigue</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="fluid_overload" onclick="return ValidateSymptomSelection();">
<label for="fluid overload">fluid overload</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="foul_smell_of_urine" onclick="return ValidateSymptomSelection();">
<label for="foul smell of urine">foul smell of urine</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="headache" onclick="return ValidateSymptomSelection();">
<label for="high fever">high fever</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="high_fever" onclick="return ValidateSymptomSelection();">
<label for="high fever">high fever</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="hip_joint_pain" onclick="return ValidateSymptomSelection();">
<label for="hip joint pain">hip joint pain</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="history_of_alcohol_consumption" onclick="return ValidateSymptomSelection();">
<label for="history of alcohol consumption">history of alcohol consumption</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="increased_appetite" onclick="return ValidateSymptomSelection();">
<label for="increased appetite">increased appetite</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="indigestion" onclick="return ValidateSymptomSelection();">
<label for="indigestion">indigestion</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="inflammatory_nails" onclick="return ValidateSymptomSelection();">
<label for="inflammatory nails">inflammatory nails</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="internal_itching" onclick="return ValidateSymptomSelection();">
<label for="internal itching">internal itching</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="irregular_sugar_level" onclick="return ValidateSymptomSelection();">
<label for="irregular sugar level">irregular sugar level</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="irritability" onclick="return ValidateSymptomSelection();">
<label for="irritability">irritability</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="irritation_in_anus" onclick="return ValidateSymptomSelection();">
<label for="irriation in anus">irration in anus</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="itching" onclick="return ValidateSymptomSelection();">
<label for="itching">itching</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="joint_pain" onclick="return ValidateSymptomSelection();">
<label for="joint pain">joint pain</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="knee_pain" onclick="return ValidateSymptomSelection();">
<label for="knee pain">knee pain</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="lack_of_concentration" onclick="return ValidateSymptomSelection();">
<label for="lack of concentration">lack of concentration</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="lethargy" onclick="return ValidateSymptomSelection();">
<label for="lethargy">lethargy</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="loss_of_appetite" onclick="return ValidateSymptomSelection();">
<label for="loss of appetite">loss of appetite</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="loss_of_balance" onclick="return ValidateSymptomSelection();">
<label for="loss of balance">loss of balance</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="loss_of_smell" onclick="return ValidateSymptomSelection();">
<label for="loss of smell">loss of smell</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="malaise" onclick="return ValidateSymptomSelection();">
<label for="malaise">malaise</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="mild_fever" onclick="return ValidateSymptomSelection();">
<label for="mild fever">mild fever</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="mood_swings" onclick="return ValidateSymptomSelection();">
<label for="mood swings">mood swings</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="movement_stiffness" onclick="return ValidateSymptomSelection();">
<label for="movement stiffness">movement stiffness</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="mucoid_sputum" onclick="return ValidateSymptomSelection();">
<label for="mucoid sputum">mucoid sputum</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="muscle_pain" onclick="return ValidateSymptomSelection();">
<label for="muscle pain">muscle pain</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="muscle_wasting" onclick="return ValidateSymptomSelection();">
<label for="muscle wasting">muscle wasting</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="muscle_weakness" onclick="return ValidateSymptomSelection();">
<label for="muscle weakness">muscle weakness</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="nausea" onclick="return ValidateSymptomSelection();">
<label for="nausea">nausea</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="neck_pain" onclick="return ValidateSymptomSelection();">
<label for="neck pain">neck pain</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="nodal_skin_eruptions" onclick="return ValidateSymptomSelection();">
<label for="nodal skin eruptions">nodal skin eruptions</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="obesity" onclick="return ValidateSymptomSelection();">
<label for="obesity">obesity</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="pain_behind_the_eyes" onclick="return ValidateSymptomSelection();">
<label for="pain behind the eyes">pain behind the eyes</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="pain_during_bowel_movements" onclick="return ValidateSymptomSelection();">
<label for="pain during bowel movements">pain during bowel movements</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="pain_in_anal_region" onclick="return ValidateSymptomSelection();">
<label for="pain in anal region">pain in anal region</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="painful_walking" onclick="return ValidateSymptomSelection();">
<label for="painful walking">painful walking</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="palpitations" onclick="return ValidateSymptomSelection();">
<label for="palpitations">palpitations</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="passage_of_gases" onclick="return ValidateSymptomSelection();">
<label for="passage of gasses">passage of gases</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="patches_in_throat" onclick="return ValidateSymptomSelection();">
<label for="patches in throat">patches in throat</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="phlegm" onclick="return ValidateSymptomSelection();">
<label for="phlegm">phlegm</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="polyuria" onclick="return ValidateSymptomSelection();">
<label for="polyuria">polyuria</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="prognosis" onclick="return ValidateSymptomSelection();">
<label for="prognosis">prognosis</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="prominent_veins_on_calf" onclick="return ValidateSymptomSelection();">
<label for="prominent veins on calf">prominent veins on calf</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="puffy_face_and_eyes" onclick="return ValidateSymptomSelection();">
<label for="puffy face and eyes">puffy face and eyes</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="pus_filled_pimples" onclick="return ValidateSymptomSelection();">
<label for="pus filled pimples">pus filled pimples</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="receiving_blood_transfusion" onclick="return ValidateSymptomSelection();">
<label for="receiving blood tranfusion">receiving blood tranfusion</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="receiving_unsterile_injections" onclick="return ValidateSymptomSelection();">
<label for="receiving unsterile injections">receiving unsterile injections</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="red_sore_around_nose" onclick="return ValidateSymptomSelection();">
<label for="red sore around nose">red sore around nose</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="red_spots_over_body" onclick="return ValidateSymptomSelection();">
<label for="red spots over body">red spots over body</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="redness_of_eyes" onclick="return ValidateSymptomSelection();">
<label for="redness_of_eyes">redness of eyes</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="restlessness" onclick="return ValidateSymptomSelection();">
<label for="restlessness">restlessness</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="runny_nose" onclick="return ValidateSymptomSelection();">
<label for="runny nose">runny nose</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="rusty_sputum" onclick="return ValidateSymptomSelection();">
<label for="rusty sputum">rusty sputum</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="scurring" onclick="return ValidateSymptomSelection();">
<label for="scurring">scurring</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="shivering" onclick="return ValidateSymptomSelection();">
<label for="shivering">shivering</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="silver_like_dusting" onclick="return ValidateSymptomSelection();">
<label for="silver like dusting">silver like dusting</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="sinus_pressure" onclick="return ValidateSymptomSelection();">
<label for="sinus pressure">sinus pressure</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="skin_peeling" onclick="return ValidateSymptomSelection();">
<label for="skin peeling">skin peeling</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="skin_rash" onclick="return ValidateSymptomSelection();">
<label for="skin rash">skin rash</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="slurred_speech" onclick="return ValidateSymptomSelection();">
<label for="slurred speech">slurred speech</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="small_dents_in_nails" onclick="return ValidateSymptomSelection();">
<label for="small dents in nails">small dents in nails</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="spinning_movements" onclick="return ValidateSymptomSelection();">
<label for="spinning movements">spinning movements</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="spotting_urination" onclick="return ValidateSymptomSelection();">
<label for="spotting urination">spotting urination</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="stiff_neck" onclick="return ValidateSymptomSelection();">
<label for="stiff neck">stiff neck</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="stomach_bleeding" onclick="return ValidateSymptomSelection();">
<label for="stomach bleeding">stomach bleeding</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="stomach_pain" onclick="return ValidateSymptomSelection();">
<label for="stomach pain">stomach pain</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="sunken_eyes" onclick="return ValidateSymptomSelection();">
<label for="sunken eyes">sunken eyes</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="sweating" onclick="return ValidateSymptomSelection();">
<label for="sweating">sweating</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="swelled_lymph_nodes" onclick="return ValidateSymptomSelection();">
<label for="swelled lymph nodes">swelled lymph nodes</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="swelling_joints" onclick="return ValidateSymptomSelection();">
<label for="swelling joints">swelling joints</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="swelling_of_stomach" onclick="return ValidateSymptomSelection();">
<label for="swelling of stomach">swelling of stomach</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="swollen_blood_vessels" onclick="return ValidateSymptomSelection();">
<label for="swollen blood vessels">swollen blood vessels</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="swollen_extremeties" onclick="return ValidateSymptomSelection();">
<label for="swollen extremeties">swollen extremeties</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="swollen_legs" onclick="return ValidateSymptomSelection();">
<label for="swollen legs">swollen legs</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="throat_irritation" onclick="return ValidateSymptomSelection();">
<label for="throat irritation">throat irritation</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="toxic_look_(typhos)" onclick="return ValidateSymptomSelection();">
<label for="toxic look">toxic look (typhos)</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="ulcers_on_tongue" onclick="return ValidateSymptomSelection();">
<label for="ulcers on tongue">ulcers on tongue</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="unsteadiness" onclick="return ValidateSymptomSelection();">
<label for="malaise">unsteadiness</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="visual_disturbances" onclick="return ValidateSymptomSelection();">
<label for="visual disturbances">visual disturbances</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="vomiting" onclick="return ValidateSymptomSelection();">
<label for="vomiting">vomiting</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="watering_from_eyes" onclick="return ValidateSymptomSelection();">
<label for="watering from eyes">watering from eyes</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="weakness_in_limbs" onclick="return ValidateSymptomSelection();">
<label for="weakness in limbs">weakness in limbs</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="weakness_of_one_body_side" onclick="return ValidateSymptomSelection();">
<label for="weakness of one body side">weakness of one body side</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="weight_gain" onclick="return ValidateSymptomSelection();">
<label for="weight gain">weight gain</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="weight_loss" onclick="return ValidateSymptomSelection();">
<label for="weight loss">weight loss</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="yellow_crust_ooze" onclick="return ValidateSymptomSelection();">
<label for="yellow crust ooze">yellow crust ooze</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="yellow_urine" onclick="return ValidateSymptomSelection();">
<label for="yellow urine">yellow urine</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="yellowing_of_eyes" onclick="return ValidateSymptomSelection();">
<label for="yellowing_of_eyes">yellowing_of_eyes</label>
</li>
<li>
<input class="single-checkbox" type="checkbox" name="symptomInput" value="yellowish_skin" onclick="return ValidateSymptomSelection();">
<label for="yellowish skin">yellowish skin</label>
</li>
</ul>
</div>
<script src="index.js" charset="utf-8"></script>
</body>
</html>