-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex copy2.html
1235 lines (1121 loc) · 60.7 KB
/
index copy2.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
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
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Andromeda Developer Board</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/choices.js/public/assets/styles/choices.min.css" />
<link rel="stylesheet" href="style.css" />
</head>
<!-- Begin left hand side bar -->
<body>
<button id="sidebarToggle" class="sidebar-toggle">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor">
<path d="M3 12h18M3 6h18M3 18h18" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</button>
<div class="sidebar">
<div class="logo">
<img src="https://avatars.githubusercontent.com/u/86694044?s=200&v=4" width="32" height="32"
alt="Andromeda Logo">
<span>Andromeda</span>
</div>
<nav>
<a href="https://andromedaprotocol.io" class="nav-item" target="_blank">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor">
<path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20" stroke-width="2" stroke-linecap="round" />
<path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z" stroke-width="2" />
</svg>
Visit our website
</a>
<a href="https://docs.andromedaprotocol.io/guides" class="nav-item" target="_blank">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor">
<path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20" stroke-width="2" stroke-linecap="round" />
<path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z" stroke-width="2" />
</svg>
Guides
</a>
<a href="https://docs.andromedaprotocol.io/andromeda" class="nav-item" target="_blank">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor">
<path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20" stroke-width="2" stroke-linecap="round" />
<path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z" stroke-width="2" />
</svg>
Developer Docs
</a>
<a href="https://andromeda-testnet-faucet.vercel.app/" class="nav-item" target="_blank">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor">
<path
d="M12 2v6M12 22v-6M4.93 4.93l4.24 4.24M14.83 14.83l4.24 4.24M2 12h6M22 12h-6M4.93 19.07l4.24-4.24M14.83 9.17l4.24-4.24"
stroke-width="2" stroke-linecap="round" />
</svg>
ANDR Faucet
</a>
<a href="https://app.testnet.andromedaprotocol.io/flex-builder" class="nav-item" target="_blank">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor">
<path d="M12 2L2 7l10 5 10-5-10-5z" stroke-width="2" />
<path d="M2 17l10 5 10-5" stroke-width="2" />
<path d="M2 12l10 5 10-5" stroke-width="2" />
</svg>
Testnet ADO Builder
</a>
<a href="https://app.testnet.andromedaprotocol.io/app-builder" class="nav-item" target="_blank">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor">
<path d="M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5" stroke-width="2" />
</svg>
Testnet App Builder
</a>
<a href="https://app.testnet.andromedaprotocol.io/cli" class="nav-item" target="_blank">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor">
<path d="M4 17l6-6-6-6M12 19h8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
Install the CLI
</a>
<a href="https://github.com/andromedaprotocol/embeddable-marketplace-demo" class="nav-item" target="_blank">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor">
<path d="M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5" stroke-width="2" />
</svg>
Install a Demo
</a>
<a href="https://dashboard.andromedaprotocol.io/" class="nav-item" target="_blank">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor">
<circle cx="12" cy="12" r="10" stroke-width="2" />
<path d="M12 6v6l4 2" stroke-width="2" stroke-linecap="round" />
</svg>
Dashboard
</a>
<a href="https://www.youtube.com/@AndromedaProtocol?sub_confirmation=1" target="_blank" class="nav-item">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor">
<path
d="M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.33z"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
<polygon points="9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" />
</svg>
Subscribe on YouTube
</a>
<a href="https://twitter.com/intent/follow?screen_name=AndromedaProt" target="_blank" class="nav-item">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor">
<path d="M6 18L18 6M6 6l12 12" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
Follow us on X
</a>
<a href="https://docs.google.com/document/d/11VOKvuXkUryZ5p733af6h0Qgrg0bGl41E9i32QXgLos/edit?usp=sharing"
target="_blank" class="nav-item">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor">
<circle cx="12" cy="12" r="10" stroke-width="2" />
<path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" />
<line x1="12" y1="17" x2="12" y2="17" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" />
</svg>
ADO Submission FAQ
</a>
</nav>
</div>
<!-- end left hand side bar. -->
<div class="main-content">
<div class="mobile-logo">
<img src="https://avatars.githubusercontent.com/u/86694044?s=200&v=4" alt="Andromeda Logo">
</div>
<div class="header-center">
<h1>OpenSource Onboarding Platform</h1>
<p class="subtitle">Begin Your Journey With Andromeda Here.</p>
</div>
<!-- Begin form -->
<div class="content-grid">
<div class="card onboarding-form">
<div class="alert alert-yellow">DO THIS FIRST</div>
<h2>Andromeda Developer Onboarding</h2>
<form id="onboardingForm">
<div class="form-group">
<label for="name">Full Name:</label>
<input type="text" id="name" name="name" required>
<div class="error-message"></div>
<span class="validation-icon success-icon">✓</span>
<span class="validation-icon error-icon">!</span>
</div>
<div class="form-group">
<label for="email">Email Address:</label>
<input type="email" id="email" name="email" required>
<div class="error-message"></div>
<span class="validation-icon success-icon">✓</span>
<span class="validation-icon error-icon">!</span>
</div>
<div class="form-group">
<label for="github">GitHub Profile (https://):</label>
<input type="url" id="github" name="github" required>
<div class="error-message"></div>
<span class="validation-icon success-icon">✓</span>
<span class="validation-icon error-icon">!</span>
</div>
<div class="form-group">
<label for="telegram">Telegram Username:</label>
<input type="text" id="telegram" name="telegram" placeholder="@username" required>
<div class="error-message"></div>
<span class="validation-icon success-icon">✓</span>
<span class="validation-icon error-icon">!</span>
</div>
<div class="form-group">
<label for="x">X/Twitter Username:</label>
<input type="text" id="x" name="x" placeholder="@username">
<div class="error-message"></div>
<span class="validation-icon success-icon">✓</span>
<span class="validation-icon error-icon">!</span>
</div>
<div class="form-group">
<label for="location">Location:</label>
<input type="text" id="location" name="location" placeholder="Enter your location" required>
<div class="error-message"></div>
<span class="validation-icon success-icon">✓</span>
<span class="validation-icon error-icon">!</span>
</div>
<div class="form-group">
<label for="spokenLanguages">Spoken Languages:</label>
<select id="spokenLanguages" name="spokenLanguages" multiple>
<option value="None">~ None</option>
<option value="English">English</option>
<option value="Spanish">Spanish</option>
<option value="French">French</option>
<option value="German">German</option>
<option value="Chinese">Chinese</option>
<option value="Arabic">Arabic</option>
<option value="Hindi">Hindi</option>
<option value="Portuguese">Portuguese</option>
<option value="Russian">Russian</option>
<option value="Japanese">Japanese</option>
<option value="Korean">Korean</option>
<option value="Other">Other</option>
</select>
<div class="error-message"></div>
<span class="validation-icon success-icon">✓</span>
<span class="validation-icon error-icon">!</span>
</div>
<div class="form-group">
<label for="frontendSkills">Front-End Skills:</label>
<select id="frontendSkills" name="frontendSkills" multiple>
<option value="None">~ None</option>
<option value="Angular">Angular</option>
<option value="Bootstrap">Bootstrap</option>
<option value="ChakraUI">ChakraUI</option>
<option value="ShadCN">ShadCN</option>
<option value="CSS-in-JS">CSS-in-JS</option>
<option value="GraphQL">GraphQL</option>
<option value="HTML/CSS">HTML/CSS</option>
<option value="JavaScript">JavaScript</option>
<option value="jQuery">jQuery</option>
<option value="Next.js">Next.js</option>
<option value="Nuxt.js">Nuxt.js</option>
<option value="React">React</option>
<option value="Redux">Redux</option>
<option value="Storybook">Storybook</option>
<option value="Tailwind CSS">Tailwind CSS</option>
<option value="TypeScript">TypeScript</option>
<option value="Vue.js">Vue.js</option>
<option value="Web3.js">Web3.js</option>
<option value="Ethers.js">Ethers.js</option>
<option value="UI/UX Design">UI/UX Design</option>
<option value="Other">Other</option>
</select>
<div class="error-message"></div>
<span class="validation-icon success-icon">✓</span>
<span class="validation-icon error-icon">!</span>
</div>
<div class="form-group">
<label for="languages">Programming Languages:</label>
<select id="languages" name="languages" multiple>
<option value="None">~ None</option>
<option value="C#">C#</option>
<option value="C++">C++</option>
<option value="Go">Go</option>
<option value="Haskell">Haskell</option>
<option value="Java">Java</option>
<option value="JavaScript">JavaScript</option>
<option value="Python">Python</option>
<option value="Rust">Rust</option>
<option value="Solidity">Solidity</option>
<option value="SQL">SQL</option>
<option value="TypeScript">TypeScript</option>
<option value="Other">Other</option>
</select>
<div class="error-message"></div>
<span class="validation-icon success-icon">✓</span>
<span class="validation-icon error-icon">!</span>
</div>
<div class="form-group">
<label for="tools">Andromeda Tool Familiarity:</label>
<select id="tools" name="tools" multiple>
<option value="None">~ None</option>
<option value="Andromeda CLI">Andromeda CLI</option>
<option value="ADO Builder">ADO Builder</option>
<option value="App Builder">App Builder</option>
<option value="Andromeda Web App">Andromeda Web App</option>
<option value="Andromeda Logic Library (ALL)">Andromeda Logic Library (ALL)</option>
<option value="Andromeda Development Experience">Andromeda Development Experience</option>
<option value="Cosmos SDK">Cosmos SDK</option>
<option value="CosmWasm">CosmWasm</option>
<option value="GraphQL">GraphQL</option>
<option value="Keplr Wallet">Keplr Wallet</option>
<option value="Git">Git</option>
<option value="GitHub">GitHub</option>
<option value="Other">Other</option>
</select>
<div class="error-message"></div>
<span class="validation-icon success-icon">✓</span>
<span class="validation-icon error-icon">!</span>
</div>
<div class="form-group">
<label for="blockchainExperience">Blockchain Experience:</label>
<select id="blockchainExperience" name="blockchainExperience" multiple>
<option value="None">~ None</option>
<option value="Andromeda">Andromeda</option>
<option value="Archway">Archway</option>
<option value="Avalanche">Avalanche</option>
<option value="BNB Chain">BNB Chain</option>
<option value="Bitcoin">Bitcoin</option>
<option value="Cardano">Cardano</option>
<option value="Coreum">Coreum</option>
<option value="Cosmos SDK">Cosmos SDK</option>
<option value="CosmWasm">CosmWasm</option>
<option value="Ethereum">Ethereum</option>
<option value="IBC (Inter-Blockchain Communication)">IBC</option>
<option value="Injective">Injective</option>
<option value="Juno">Juno</option>
<option value="Neutron">Neutron</option>
<option value="OmniFlix">OmniFlix</option>
<option value="Polkadot">Polkadot</option>
<option value="Polygon">Polygon</option>
<option value="Solana">Solana</option>
<option value="Stargaze">Stargaze</option>
<option value="Tezos">Tezos</option>
<option value="Smart Contract Auditing">Smart Contract Auditing</option>
<option value="DeFi Protocols">DeFi Protocols</option>
<option value="NFT Development">NFT Development</option>
<option value="Other">Other</option>
</select>
<div class="error-message"></div>
<span class="validation-icon success-icon">✓</span>
<span class="validation-icon error-icon">!</span>
</div>
<div class="form-group">
<label for="aiExperience">Specific AI Experience:</label>
<select id="aiExperience" name="aiExperience" multiple>
<option value="">Select relevant AI skills/tools</option>
<option value="Scikit-learn">Scikit-learn</option>
<option value="TensorFlow">TensorFlow</option>
<option value="PyTorch">PyTorch</option>
<option value="Keras">Keras</option>
<option value="OpenCV">OpenCV</option>
<option value="ChatGPT">ChatGPT</option>
<option value="OpenAI API">OpenAI API</option>
<option value="Claude API">Claude API</option>
<option value="Google Gemini API">Google Gemini API</option>
<option value="LangFlow">LangFlow</option>
<option value="Transformer models">Transformer models</option>
<option value="Reinforcement learning">Reinforcement learning</option>
<option value="Generative AI">Generative AI</option>
<option value="Federated learning">Federated learning</option>
<option value="Explainable AI">Explainable AI</option>
<option value="Other">Other (specify in Additional Skills)</option>
</select>
<div class="error-message"></div>
<span class="validation-icon success-icon">✓</span>
<span class="validation-icon error-icon">!</span>
</div>
<div class="form-group">
<label for="goals">Goals:</label>
<select id="goals" name="goals" required>
<option value="~ None">~ None</option>
<option value="Learn">Learn</option>
<option value="Build">Build</option>
<option value="Contribute">Contribute</option>
<option value="Mentor">Mentor</option>
<option value="Collaborate">Collaborate</option>
<option value="Find a Team">Find a Team</option>
<option value="Earn Rewards">Earn Rewards</option>
<option value="Other">Other</option>
</select>
</div>
<div class="form-group">
<label for="experience">Experience Level:</label>
<select id="experience" name="experience" required>
<option value="None">~ None</option>
<option value="Beginner (0-1 years)">Beginner (0-1 years)</option>
<option value="Intermediate (1-3 years)">Intermediate (1-3 years)</option>
<option value="Advanced (3+ years)">Advanced (3+ years)</option>
<option value="Expert (5+ years)">Expert (5+ years, with significant contributions to
blockchain projects)</option>
</select>
</div>
<div class="form-group">
<label for="hackathonExperience">Hackathon Experience:</label>
<select id="hackathonExperience" name="hackathonExperience" required>
<option value="None">~ None</option>
<option value="Some">Some</option>
<option value="Experienced">Experienced</option>
<option value="Frequently Participate">Frequently Participate</option>
<option value="Have Won Awards">Have Won Awards</option>
</select>
</div>
<div class="form-group">
<label for="education">Education:</label>
<select id="education" name="education" required>
<option value="None">~ None</option>
<option value="Self-taught">Self-taught</option>
<option value="Bootcamp">Bootcamp</option>
<option value="Undergraduate">Undergraduate</option>
<option value="Graduate">Graduate</option>
<option value="Prefer-not-to-say">Prefer not to say</option>
</select>
</div>
<div class="form-group">
<label for="availability">Availability:</label>
<select id="availability" name="availability" required>
<option value="None">~ None</option>
<option value="Part-time">Part-time</option>
<option value="Full-time">Full-time</option>
<option value="Prefer-not-to-say">Prefer not to say</option>
</select>
</div>
<div class="form-group">
<label for="portfolio">Portfolio (https://):</label>
<input type="url" id="portfolio" name="portfolio">
<div class="error-message"></div>
<span class="validation-icon success-icon">✓</span>
<span class="validation-icon error-icon">!</span>
</div>
<div class="form-group">
<label for="additionalSkills">Additional Skills or Notes:</label>
<input type="text" id="additionalSkills" name="additionalSkills">
</div>
<div class="form-group">
<label for="relevantProjects">Relevant AI Projects:</label>
<input type="text" id="relevantProjects" name="relevantProjects" placeholder="Provide links...">
</div>
<button type="submit" class="submit-button">Submit</button>
</form>
</div>
<!-- End form -->
<!-- Begin right sidebar -->
<div class="grid">
<div class="card">
<div class="header-section">
<h2 class="header-title">Developer <span class="rocket-icon">🚀</span> Launchpad</h2>
<p class="onboard-check">Already onboarded?</p>
<div class="warning">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor">
<path d="M12 2L2 7l10 5 10-5-10-5z" stroke-width="2" />
<path d="M2 17l10 5 10-5" stroke-width="2" />
<path d="M2 12l10 5 10-5" stroke-width="2" />
</svg>
<h1 class="header-subtitle header-subtitle-gold">DO THIS AFTER ONBOARDING</h1>
</div>
</div>
<ol class="launchpad-list">
<li class="launchpad-item highlighted">
<div class="launchpad-number">⭐</div>
<p class="launchpad-description launchpad-description-dark">COMPLETE ALL OF THE FOLLOWING
TASKS TO JOIN THE ANDROMEDA FLIGHT CREW 👽</p>
</li>
<li class="launchpad-item highlighted">
<div class="launchpad-number">1</div>
<h4 class="launchpad-title">Join the Andromeda Developer Program</h4>
<p class="launchpad-description">Joining our telegram is the first step in becoming a part
of the Andromeda Developer Program. Here You will connect
with like-minded individuals and gain access to exclusive resources.</p>
<a href="https://t.me/andromedaprotocol/3776" class="launchpad-link external-link"
target="_blank">Join
Andromeda Dev TG</a>
</li>
<li class="launchpad-item highlighted">
<div class="launchpad-number">2</div>
<h4 class="launchpad-title">Introduce Yourself in the Telegram</h4>
<p class="launchpad-description"><strong><em>Once you're a member, introduce yourself by
sharing yourbackground and aspirations. Here, you'll make friends and receive
real-time
support from the community.</p></em></strong></p>
</li>
<li class="launchpad-item">
<div class="launchpad-number">3</div>
<h4 class="launchpad-title">Master ADO Building</h4>
<p class="launchpad-description">Complete 8 comprehensive guides to understand the
fundamentals
of ADO development.</p>
<a href="https://docs.andromedaprotocol.io/guides/guides-and-examples/ado-builder"
class="launchpad-link external-link" target="_blank">Start ADO Builder Guides</a>
</li>
<li class="launchpad-item">
<div class="launchpad-number">4</div>
<h4 class="launchpad-title">Build Your First App</h4>
<p class="launchpad-description">Create a functional application using the Andromeda App
Builder.</p>
<a href="https://docs.andromedaprotocol.io/guides/guides-and-examples/app-builder/nft-auction-marketplace"
class="launchpad-link external-link" target="_blank">Explore App Builder Guide</a>
</li>
<li class="launchpad-item">
<div class="launchpad-number">5</div>
<h4 class="launchpad-title">Explore Embeddables</h4>
<p class="launchpad-description">Learn how to create Andromeda embeddables.</p>
<a href="https://docs.andromedaprotocol.io/guides/guides-and-examples/embeddables/nft-auction"
class="launchpad-link external-link" target="_blank">Try Embeddables Guide</a>
</li>
<li class="launchpad-item">
<div class="launchpad-number">6</div>
<h4 class="launchpad-title">Share Your Success</h4>
<p class="launchpad-description">Showcase your achievements and get recognition from the
community.</p>
<span class="launchpad-link">Post in Main Telegram Channel</span>
</li>
<li class="launchpad-item">
<div class="launchpad-number">7</div>
<h4 class="launchpad-title">Launch Your Project</h4>
<p class="launchpad-description">Take on real-world challenges and contribute to the
ecosystem.
</p>
<a href="https://github.com/andromedaprotocol/ado-database-hackerboard/issues"
class="launchpad-link external-link hackerboard-link" target="_blank">
Visit The 🔗🔗 🪓 Hackerboard
</a>
</li>
</ol>
</div>
</div>
</div>
<!-- end right sidebar -->
<!-- Begin bottom row of buttons -->
<!-- suggested path box -->
<div id="recommendations" class="recommendations-hidden">
<h3 id="recommendations-title">✨ Recommended Paths ✨</h3>
<ul id="recommendation-list"></ul>
</div>
<!-- end suggested path box -->
<!-- begins bottom row buttons -->
<div class="submit-section">
<h1 class="text-center">Already have ideas? Submit A New ADO or Feature!</h1>
<div class="submit-buttons">
<a href="https://github.com/andromedaprotocol/hackerboard_tasks/issues" target="_blank"
class="submit-button">Hackerboard (Bounties)</a>
<a href="https://github.com/andromedaprotocol/ado-database/issues/new/choose" target="_blank"
class="submit-button">Submit
ADO Idea [poss. pay]</a>
<a href="https://github.com/andromedaprotocol/Contractor_bidding/issues" target="_blank"
class="submit-button">Contracts for Bid (Solo/Team)</a>
<a href="https://zealy.io/cw/andromedacommunity/questboard/ff856265-3649-4b5f-a41f-c19eadfaf2e0/36c50401-4e44-452a-9539-94b9f2451f3d"
target="_blank" class="submit-button">Ambassador Program</a>
<a href="https://github.com/andromedaprotocol/ai_initiatives/issues" target="_blank"
class="submit-button">AI Initiatives</a>
</div>
</div>
</div>
<!-- end bottom row buttons -->
<!-- Start script -->
<script src="https://cdn.jsdelivr.net/npm/choices.js/public/assets/scripts/choices.min.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function () {
// Add all CSS styles
const style = document.createElement('style');
style.textContent = `
.form-group.error input,
.form-group.error select {
border-color: #8b3a3a;
background-color: rgba(139, 58, 58, 0.05);
}
.error-message {
color: #c17878;
font-size: 0.875rem;
margin-top: 0.25rem;
display: none;
}
.form-group.error .error-message {
display: block;
}
.form-group.success input,
.form-group.success select {
border-color: #3a8b3a;
background-color: rgba(58, 139, 58, 0.05);
}
.validation-icon {
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
display: none;
}
.form-group {
position: relative;
}
.form-group.error .error-icon {
display: block;
color: #8b3a3a;
}
.form-group.success .success-icon {
display: block;
color: #3a8b3a;
}
.loading-spinner {
display: inline-block;
width: 20px;
height: 20px;
margin-right: 10px;
border: 3px solid #2c2c2c;
border-top: 3px solid #4a4a4a;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.success-message {
background-color: rgba(58, 139, 58, 0.1);
color: #d0d0d0;
padding: 20px;
border-radius: 8px;
margin-bottom: 20px;
opacity: 0;
transform: translateY(-20px);
transition: all 0.3s ease;
border: 1px solid rgba(58, 139, 58, 0.2);
text-align: center;
}
.success-message.show {
opacity: 1;
transform: translateY(0);
}
.next-steps {
background: #2c2c2c;
padding: 15px 20px;
border-radius: 6px;
margin-top: 10px;
border: 1px solid #3c3c3c;
}
/* Style the recommendations title */
#recommendations-title {
text-align: center;
font-size: 2rem;
margin-top: 1rem;
margin-bottom: 1rem;
color: #FFD700;
}
/* Add emojis to the title (optional) */
#recommendations-title:before {
content: "✨ ";
}
#recommendations-title:after {
content: " ✨";
}
/* Style the recommendation list items */
#recommendation-list li {
text-align: center;
font-size: 1.4rem;
color: #4D7FFF;
margin-bottom: 0.8rem;
list-style: none;
}
/* Add an icon to list items (optional) */
#recommendation-list li:before {
content: "➡️ ";
margin-right: 0.5rem;
}
/* Style for recommendation items */
#recommendation-list li {
background-color: rgba(77, 127, 255, 0.1);
border: 1px solid #4D7FFF;
padding: 10px;
margin-bottom: 10px;
border-radius: 8px;
text-align: center;
font-size: 1.1rem;
color: #4D7FFF;
list-style: none;
}
#recommendation-list li:before {
content: '⭐ ';
margin-right: 8px;
}
#recommendations {
margin-top: 1rem;
margin-bottom: 1rem;
text-align: center;
}
`;
document.head.appendChild(style);
// Validation rules
const validationRules = {
name: {
validate: value => value.trim().length >= 2,
message: 'Please enter your full name (minimum 2 characters)'
},
email: {
validate: value => /^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(value),
message: 'Please enter a valid email address'
},
github: {
validate: value => value.startsWith('https://github.com/') || value.startsWith('https://www.github.com/'),
message: 'Please enter a valid GitHub profile URL (https://github.com/...)'
},
telegram: {
validate: value => value.trim().length > 0,
message: 'Please enter your Telegram username'
},
location: {
validate: value => value.trim().length > 0,
message: 'Please enter your location'
},
x: {
validate: value => value.trim().length > 0,
message: 'Please enter your X/Twitter username'
},
portfolio: {
validate: value => !value.trim() || value.startsWith('http://') || value.startsWith('https://'),
message: 'Please enter a valid portfolio URL (or leave empty)'
}
};
// Initialize Choices.js and store instances
const multipleSelects = document.querySelectorAll('select[multiple]');
const choicesInstances = []; // Array to store Choices instances
multipleSelects.forEach(select => {
const instance = new Choices(select, { removeItemButton: true });
choicesInstances.push(instance); // Store the instance
});
// Add validation feedback elements
document.querySelectorAll('.form-group').forEach(group => {
const input = group.querySelector('input, select');
if (input) {
const errorMessage = document.createElement('div');
errorMessage.className = 'error-message';
group.appendChild(errorMessage);
const successIcon = document.createElement('span');
successIcon.className = 'validation-icon success-icon';
successIcon.innerHTML = '✓';
const errorIcon = document.createElement('span');
errorIcon.className = 'validation-icon error-icon';
errorIcon.innerHTML = '!';
group.appendChild(successIcon);
group.appendChild(errorIcon);
}
});
// Location auto-detection
async function detectUserLocation() {
try {
const response = await fetch('https://ipapi.co/json/');
const data = await response.json();
const locationInput = document.getElementById('location');
if (data.city && data.country_name) {
locationInput.value = `${data.city}, ${data.country_name}`;
const event = new Event('input');
locationInput.dispatchEvent(event);
}
} catch (error) {
console.log('Location detection failed:', error);
}
}
// URL formatting helpers
function formatGithubUrl(input) {
let value = input.value.trim();
if (!value.includes('github.com') && !value.includes('http')) {
value = `https://github.com/${value.replace('@', '')}`;
}
if (value.startsWith('http://')) {
value = value.replace('http://', 'https://');
}
if (!value.startsWith('http')) {
value = `https://${value}`;
}
input.value = value;
}
// Smart handle formatting
function formatSocialHandle(input, prefix = '@') {
let value = input.value.trim();
if (value && !value.startsWith(prefix)) {
input.value = prefix + value;
}
}
// Initialize skills based on other selections
function initializeRelatedSkills() {
const frontendSelect = document.getElementById('frontendSkills');
const languagesSelect = document.getElementById('languages');
const toolsSelect = document.getElementById('tools');
const blockchainSelect = document.getElementById('blockchainExperience');
blockchainSelect.addEventListener('change', function (e) {
const choices = e.target.selectedOptions;
const values = Array.from(choices).map(option => option.value);
if (values.includes('Ethereum')) {
suggestSkill(languagesSelect, 'Solidity');
suggestSkill(toolsSelect, 'MetaMask');
}
if (values.includes('Cosmos SDK') || values.includes('CosmWasm')) {
suggestSkill(toolsSelect, 'Keplr Wallet');
}
});
languagesSelect.addEventListener('change', function (e) {
const choices = e.target.selectedOptions;
const values = Array.from(choices).map(option => option.value);
if (values.includes('JavaScript') || values.includes('TypeScript')) {
suggestSkill(frontendSelect, 'React');
suggestSkill(frontendSelect, 'Next.js');
}
});
}
// Helper function to suggest a skill
function suggestSkill(select, skill) {
const choices = select.choices;
if (choices && !Array.from(select.selectedOptions).some(option => option.value === skill)) {
const shouldAdd = confirm(`Would you like to add ${skill} to your skills? It's commonly used with your other selections.`);
if (shouldAdd) {
choices.setChoiceByValue(skill);
}
}
}
// Validation function
function validateField(input) {
const formGroup = input.closest('.form-group');
const rule = validationRules[input.id];
if (!rule) return true;
const errorMessage = formGroup.querySelector('.error-message');
const isValid = rule.validate(input.value);
formGroup.classList.remove('error', 'success');
if (!isValid) {
formGroup.classList.add('error');
errorMessage.textContent = rule.message;
} else {
formGroup.classList.add('success');
}
return isValid;
}
// Add event listeners for auto-formatting and validation
Object.keys(validationRules).forEach(fieldId => {
const input = document.getElementById(fieldId);
if (input) {
input.addEventListener('input', () => validateField(input));
input.addEventListener('blur', () => validateField(input));
}
});
document.getElementById('github').addEventListener('blur', function () {
formatGithubUrl(this);
});
document.getElementById('telegram').addEventListener('blur', function () {
formatSocialHandle(this, '@');
});
document.getElementById('x').addEventListener('blur', function () {
formatSocialHandle(this, '@');
});
// Initialize everything
detectUserLocation();
initializeRelatedSkills();
// Form submission handler
document.getElementById("onboardingForm").addEventListener("submit", async function (e) {
e.preventDefault();
// Validate all fields before submission
let isValid = true;
Object.keys(validationRules).forEach(fieldId => {
const input = document.getElementById(fieldId);
if (input && !validateField(input)) {
isValid = false;
}
});
if (!isValid) {
alert('Please correct the errors before submitting.');
return;
}
const submitButton = document.querySelector('button[type="submit"]');
const originalButtonText = submitButton.innerHTML;
submitButton.innerHTML = '<span class="loading-spinner"></span>Submitting...';
submitButton.disabled = true;
try {
const data = {
name: document.getElementById("name").value.trim(),
email: document.getElementById("email").value.trim(),
github: document.getElementById("github").value.trim(),
telegram: document.getElementById("telegram").value.trim(),
x: document.getElementById("x").value.trim(),
location: document.getElementById("location").value.trim(),
spokenLanguages: Array.from(document.getElementById("spokenLanguages").selectedOptions).map(option => option.value),
frontendSkills: Array.from(document.getElementById("frontendSkills").selectedOptions).map(option => option.value),
languages: Array.from(document.getElementById("languages").selectedOptions).map(option => option.value),
tools: Array.from(document.getElementById("tools").selectedOptions).map(option => option.value),
blockchainExperience: Array.from(document.getElementById("blockchainExperience").selectedOptions).map(option => option.value),
goals: document.getElementById("goals").value,
experience: document.getElementById("experience").value,
hackathonExperience: document.getElementById("hackathonExperience").value,
education: document.getElementById("education").value,
availability: document.getElementById("availability").value,
portfolio: document.getElementById("portfolio").value.trim(),
additionalSkills: document.getElementById("additionalSkills").value.trim(),
aiExperience: Array.from(document.getElementById("aiExperience").selectedOptions).map(option => option.value), // Now an array
relevantProjects: document.getElementById("relevantProjects").value.trim(),
submissionDate: new Date().toISOString()
};
// Using a workaround for 'no-cors'
const response = await fetch("https://script.google.com/macros/s/AKfycbyRWGtJ86aoyGdzR7EuubwibnoFFaQr4K36x7mdPVR5t3_HcOoMEnHP7QrFBf7DmlLI/exec", {
method: "POST",
mode: "no-cors", // Keep no-cors
headers: {
"Content-Type": "text/plain;charset=utf-8", // Change content type
},
body: JSON.stringify(data)
});
// Note: We cannot directly access response.json() here because of 'no-cors'
// Simulate a successful response for now
const result = {
result: 'success',
recommendations: getRecommendationsFromData(data) // Call a function to get recommendations
};
if (result.result === 'success') {
displayRecommendations(result.recommendations); // Display recommendations
}
// Display success message and recommendations
const successMessage = document.createElement('div');
successMessage.className = 'success-message';
successMessage.innerHTML = `
<h3>🎉 Welcome to Andromeda!</h3>
<p>Your developer application has been successfully submitted.</p>
<div id="recommendations" class="recommendations-hidden">
<h3 id="recommendations-title">✨ Recommended Paths ✨</h3>
<ul id="recommendation-list"></ul>
</div>
<div class="next-steps">
<h4>🚀 Next Steps:</h4>
<ol>
<li>Join our <a href="https://t.me/andromedaprotocol" target="_blank">Telegram group</a></li>
<li>Introduce yourself to the community</li>
<li>Level up with our <a href="https://docs.andromedaprotocol.io/guides" target="_blank">web app guides</a>. Ready for more? Dive into our <a href="https://docs.andromedaprotocol.io" target="_blank">developer docs</a>.</li>
</ol>
</div>
`;
const form = document.getElementById("onboardingForm");
form.parentNode.insertBefore(successMessage, form);
setTimeout(() => successMessage.classList.add('show'), 100);
// Reset form fields
form.reset();
// Reset Choices.js selections using the stored instances
choicesInstances.forEach(instance => {
instance.removeActiveItems(); // Remove selected items
instance.setChoiceByValue(''); // Reset to placeholder
});
} catch (error) {
console.error("Error:", error);
// The error you're seeing is likely because the form submission is technically failing due to 'no-cors'
alert("There was an error submitting the form. This is likely due to the 'no-cors' workaround. The form data was likely still sent to the spreadsheet.");
} finally {
submitButton.innerHTML = originalButtonText;
submitButton.disabled = false;
}
});
// Function to simulate getting recommendations (replace with actual logic if possible)
function getRecommendationsFromData(data) {
// This is a placeholder. Ideally, you would get these recommendations from your server-side script.
console.log("Data for recommendations:", data); // Log the data
// Example: