-
Notifications
You must be signed in to change notification settings - Fork 4
/
membership.html
935 lines (894 loc) · 44.3 KB
/
membership.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
<!DOCTYPE HTML>
<html lang="en">
<head>
<!-- Display -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Identity -->
<title>PSF Membership</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta property="og:title" content="Learn more about the PSF membership types!" />
<meta property="og:type" content="website" />
<meta name="description"
content="The PSF membership types described in a visual format.">
<meta property="og:url" content="https://psf.github.io/diversity-and-inclusion-wg/membership.html" />
<meta property="og:image" content="" />
<link rel="shortcut icon" href="assets/images/favicon.ico" type="image/x-icon" />
<!-- Vendor Style Sheet -->
<link rel="stylesheet" href="assets/css/vendor/font-family.min.css" />
<link rel="stylesheet" href="assets/css/vendor/font-awesome.min.css" />
<link rel="stylesheet" href="assets/css/vendor/menu-engine.min.css" />
<link rel="stylesheet" href="assets/css/vendor/menu-grid.min.css" />
<link rel="stylesheet" href="assets/css/vendor/bootstrap.min.css" />
<link rel="stylesheet" href="assets/css/vendor/swiper.min.css" />
<link rel="stylesheet" href="assets/css/vendor/dynamic-slider.min.css" />
<link rel="stylesheet" href="assets/css/vendor/bricklayer.min.css" />
<link rel="stylesheet" href="assets/css/vendor/lightbox.min.css" />
<link rel="stylesheet" href="assets/css/vendor/aos.min.css" />
<!-- Main Style Sheet -->
<link rel="stylesheet" href="assets/css/theme.css" />
<link rel="stylesheet" href="assets/css/core.css" />
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body class="shock-body">
<!-- Preloader -->
<div id="preloader" class="preloader black" data-bg-image="assets/images/logo-dni.svg"></div>
<!-- Popup Bar -->
<!-- <div id="popup-bar" class="popup-bar bg-gradient scheme-2 shadow d-none">
<p class="description white-85">Meet us at the very first friendly D&I Chat.</p>
<a href="ticketing website" target="_blank" class="button simple">
<span class="button-text white white-hover"><mark class="animated-underline secondary active">Book your
seat</mark></span>
<i class="fa-solid fa-arrow-right button-icon white white-hover"></i>
</a>
<button id="popup-bar-dismiss" class="button close-button">
<i class="fa-solid fa-xmark button-icon white secondary-hover"></i>
</button>
</div> -->
<!-- Header -->
<header id="header" class="shock-header">
<!-- Navbar -->
<nav id="navbar" class="navbar navbar-centered navbar-expand-lg auto-hide scheme-1 tertiary">
<div class="container">
<!-- Brand -->
<a class="navbar-brand" href="https://psf.github.io/diversity-and-inclusion-wg/" target="_blank">
<!-- <div class="site-title">Site Title</div> -->
<img src="assets/images/logo-dni.svg" data-logo-alt="assets/images/logo-dni.svg"
data-logo-mobile="assets/images/logo-dni.svg" alt="PSF Diversity and Inclusion WG" class="logo" />
</a>
<!-- Responsive menu toggle -->
<button class="navbar-toggler" data-bs-target="#navbar-items" data-bs-toggle="collapse" aria-expanded="false">
<span class="navbar-toggler-icon">
<span class="line"></span>
<span class="line"></span>
<span class="line"></span>
</span>
</button>
<div id="navbar-items" class="collapse navbar-collapse">
<!-- Responsive search form -->
<div class="navbar-collapse-form">
<div class="form-area d-only-mobile d-none scheme-1">
<!-- <form class="form-fields needs-validation" novalidate="novalidate">
<div class="form-row row has-icon">
<!-- <div class="form-col form-floating">
<button class="button overlay-button"><img class="overlay-image-icon"
src="assets/images/logo-dni.svg" alt="Icon name" data-dni-icon="32" /></button>
<input id="InputSearchMobile" class="form-control focus-trigger-field" name="InputSearchMobile"
placeholder="Type keywords..." required="required">
<label for="InputSearchMobile" class="form-label">Type keywords...</label>
</div> -->
<!-- </div> -->
<!-- </form> -->
</div>
</div>
<div class="navbar-left">
<!-- Link -->
<ul class="navbar-nav">
<li class="nav-item">
<!--About menu bar -->
<a href="#about" class="nav-link flutter-underline">
<span class="text">Who are we</span>
<svg class="flutter-underline-graphic" width="300%" height="100%" viewBox="0 0 1200 60"
preserveAspectRatio="none">
<path
d="M0,56.5c0,0,298.666,0,399.333,0C448.336,56.5,513.994,46,597,46c77.327,0,135,10.5,200.999,10.5c95.996,0,402.001,0,402.001,0">
</path>
</svg>
</a>
</li>
<!--Agenda menu bar -->
<a href="#agenda" class="nav-link flutter-underline">
<span class="text">Agenda</span>
<svg class="flutter-underline-graphic" width="300%" height="100%" viewBox="0 0 1200 60"
preserveAspectRatio="none">
<path
d="M0,56.5c0,0,298.666,0,399.333,0C448.336,56.5,513.994,46,597,46c77.327,0,135,10.5,200.999,10.5c95.996,0,402.001,0,402.001,0">
</path>
</svg>
</a>
<li class="nav-item dropdown has-megamenu hover">
<a class="nav-link dropdown-toggle has-icon flutter-underline" href="#" data-bs-toggle="dropdown">
<span class="text">Videos</span><img class="image-icon dropdown-icon"
src="assets/svg/chevron-down-outline.svg" alt="Icon name" data-dni-icon="32" />
<svg class="flutter-underline-graphic" width="300%" height="100%" viewBox="0 0 1200 60"
preserveAspectRatio="none">
<path
d="M0,56.5c0,0,298.666,0,399.333,0C448.336,56.5,513.994,46,597,46c77.327,0,135,10.5,200.999,10.5c95.996,0,402.001,0,402.001,0">
</path>
</svg>
</a>
<div class="dropdown-menu megamenu animate fade-down" role="menu">
<div class="container">
<div class="section-inner-expanded">
<div class="row g-3">
<div class="col-12 col-md-6">
<div class="megamenu-item h-auto">
<h6 class="title text-white">Previous Meets</h6>
</div>
<div class="row g-3">
<div class="col-12 col-md-6">
<div class="megamenu-item">
<ul class="nav-list list-unstyled">
<li class="nav-item">
<a href="-" class="nav-link">
<span class="text">January 31, 2023</span>
<span class="badge ms-05 primary-15 primary-15-hover">
<span class="badge-text primary primary-hover">Latest</span>
</span>
</a>
</li>
<!-- <li class="nav-item">
<a href="meet 2 url" class="nav-link parent">
<span class="text">Meet 2</span>
</a>
</li> -->
<!-- <li class="nav-item">
<a href="meet 3 url" class="nav-link">
<span class="text">Meet 3</span>
</a>
</li> -->
<!-- <li class="nav-item">
<a href="Meet 4 url" class="nav-link parent">
<span class="text">Meet 4 </span>
</a>
</li> -->
<!-- <li class="nav-item">
<a href="meet 5 url" class="nav-link">
<span class="text">Meet 5 url</span>
</a>
</li> -->
</ul>
</div>
</div>
<!-- <div class="col-12 col-md-6">
<div class="megamenu-item">
<ul class="nav-list list-unstyled">
<li class="nav-item">
<a href="meet-6-url" class="nav-link">
<span class="text">Meet 6</span>
</a>
</li>
<li class="nav-item">
<a href="meet 7 url" class="nav-link">
<span class="text">Meet 7 </span>
</a>
</li>
<li class="nav-item">
<a href="Meet 8 url" class="nav-link">
<span class="text">Meet 8 </span>
<span class="badge ms-05 secondary-15 secondary-15-hover">
<span class="badge-text secondary secondary-hover">Hot</span>
</span>
</a>
</li>
<li class="nav-item">
<a href="Meet 9 url" class="nav-link parent">
<span class="text">Meet 9</span>
</a>
</li>
<li class="nav-item">
<a href="Meet 10 url" class="nav-link parent">
<span class="text">Meet 10</span>
</a>
</li>
</ul>
</div>
</div> -->
</div>
</div>
<!-- <div class="col-12 col-md-6 col-lg-3">
<div class="megamenu-item">
<h6 class="title text-white">Other videos</h6>
<ul class="nav-list list-unstyled">
<li class="nav-item">
<a href="url 1" class="nav-link">
<span class="text">link 1</span>
</a>
</li>
<li class="nav-item">
<a href="url 2" class="nav-link">
<span class="text">Link 2</span>
</a>
</li>
<li class="nav-item">
<a href="url-3" class="nav-link">
<span class="text">Link 3</span>
</a>
</li>
<li class="nav-item">
<a href="url 4" class="nav-link">
<span class="text">Link 4</span>
</a>
</li>
<li class="nav-item">
<a href="url 5" class="nav-link">
<span class="text">Link 5</span>
</a>
</li>
<li class="nav-item">
<a href="url 6" class="nav-link">
<span class="text">Link 6</span>
</a>
</li>
</ul>
</div>
</div> -->
<div class="col-12 col-md-6 col-lg-3">
<div class="megamenu-item">
<a href="element-carousel.html" target="_blank" class="megamenu-image secondary">
<img src="assets/images/gif/d&i.gif" alt="Image name" class="image">
<span class="title"></span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</li>
</ul>
</div>
<div class="navbar-right">
<!-- Link -->
<ul class="navbar-nav">
<li class="nav-item dropdown has-megamenu hover">
<a href="#faqs" class="nav-link flutter-underline">
<span class="text">FAQ</span>
<svg class="flutter-underline-graphic" width="300%" height="100%" viewBox="0 0 1200 60"
preserveAspectRatio="none">
<path
d="M0,56.5c0,0,298.666,0,399.333,0C448.336,56.5,513.994,46,597,46c77.327,0,135,10.5,200.999,10.5c95.996,0,402.001,0,402.001,0">
</path>
</svg>
</a>
<div class="dropdown-menu megamenu animate fade-down" role="menu">
<div class="container">
</div>
</div>
</li>
<li class="nav-item dropdown has-megamenu hover">
<a class="nav-link dropdown-toggle has-icon flutter-underline" href="#" data-bs-toggle="dropdown">
<span class="text">Community Spotlight</span><img class="image-icon dropdown-icon"
src="assets/svg/chevron-down-outline.svg" alt="Icon name" data-dni-icon="32" />
<svg class="flutter-underline-graphic" width="300%" height="100%" viewBox="0 0 1200 60"
preserveAspectRatio="none">
<path
d="M0,56.5c0,0,298.666,0,399.333,0C448.336,56.5,513.994,46,597,46c77.327,0,135,10.5,200.999,10.5c95.996,0,402.001,0,402.001,0">
</path>
</svg>
</a>
<div class="dropdown-menu megamenu animate fade-down" role="menu">
<div class="container">
<div class="section-inner-expanded">
<div class="row g-3">
<div class="col-12 col-md-6">
<div class="megamenu-item h-auto">
<h6 class="title text-white">Most Recent Showcase</h6>
</div>
<div class="row g-3">
<div class="col-12 col-md-6">
<div class="megamenu-item">
<ul class="nav-list list-unstyled">
<li class="nav-item">
<a href="https://observablehq.com/@terezaif/who-voted-in-the-psf-board-elections"
class="nav-link">
<span class="text">PSF ELection Voters</span>
<span class="badge ms-05 primary-15 primary-15-hover">
<span class="badge-text primary primary-hover">Latest</span>
</span>
</a>
</li>
<li class="nav-item">
<a href="post-2.html" class="nav-link parent">
<span class="text">Story 2</span>
</a>
</li>
<li class="nav-item">
<a href="post-3.html" class="nav-link">
<span class="text">Story 3</span>
</a>
</li>
<li class="nav-item">
<a href="post-4.html" class="nav-link parent">
<span class="text">Story 4</span>
</a>
</li>
<li class="nav-item">
<a href="post-5.html" class="nav-link">
<span class="text">Story 5</span>
</a>
</li>
</ul>
</div>
</div>
<!-- <div class="col-12 col-md-6">
<div class="megamenu-item">
<ul class="nav-list list-unstyled">
<li class="nav-item">
<a href="post-6.html" class="nav-link">
<span class="text">story 6</span>
</a>
</li>
<li class="nav-item">
<a href="post-7.html" class="nav-link">
<span class="text">Story 7</span>
</a>
</li>
<li class="nav-item">
<a href="post-8.html" class="nav-link">
<span class="text">story 8</span>
<span class="badge ms-05 secondary-15 secondary-15-hover">
</span>
</a>
</li>
<li class="nav-item">
<a href="post-9.html" class="nav-link parent">
<span class="text">story 9 </span>
</a>
</li>
<li class="nav-item">
<a href="post-10.html" class="nav-link parent">
<span class="text">Story 10 </span>
</a>
</li>
</ul>
</div>
</div> -->
</div>
</div>
<div class="col-12 col-md-6 col-lg-3">
<div class="megamenu-item">
<h6 class="title text-white">Python Heroes</h6>
<ul class="nav-list list-unstyled">
<li class="nav-item">
<a href="blog-post-1.html" class="nav-link">
<span class="text">Hero 1</span>
</a>
</li>
<li class="nav-item">
<a href="blog-post-2.html" class="nav-link">
<span class="text">Hero 2</span>
</a>
</li>
<li class="nav-item">
<a href="blog-post-3.html" class="nav-link">
<span class="text">Hero 3</span>
</a>
</li>
<li class="nav-item">
<a href="blog-post-4.html" class="nav-link">
<span class="text">Hero 4</span>
</a>
</li>
<li class="nav-item">
<a href="blog-post-5.html" class="nav-link">
<span class="text">Hero 5</span>
</a>
</li>
<li class="nav-item">
<a href="blog-post-6.html" class="nav-link">
<span class="text">Hero 6</span>
</a>
</li>
</ul>
</div>
</div>
<div class="col-12 col-md-6 col-lg-3">
<div class="megamenu-item">
<a href="element-carousel.html" target="_blank" class="megamenu-image secondary">
<img src="assets/images/gif/spot.gif" alt="spotlight gif" class="image">
<span class="title">Spotlight</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</li>
<li class="nav-item">
<a href="https://events.hubilo.com/dni-friendly-chat/register" target="_blank" class="nav-link flutter-underline">
<span class="text">Meet us!</span>
<svg class="flutter-underline-graphic" width="300%" height="100%" viewBox="0 0 1200 60"
preserveAspectRatio="none">
<path
d="M0,56.5c0,0,298.666,0,399.333,0C448.336,56.5,513.994,46,597,46c77.327,0,135,10.5,200.999,10.5c95.996,0,402.001,0,402.001,0">
</path>
</svg>
</a>
</li>
</ul>
<!-- Icon -->
<ul class="navbar-nav navbar-icons d-only-desktop">
<!-- Search icon -->
<li class="nav-item dropdown has-megamenu hover d-only-desktop">
<!-- <a href="#" class="nav-link dropdown-toggle" data-bs-toggle="dropdown">
<i class="fa-solid fa-magnifying-glass icon"></i>
</a> -->
<div class="dropdown-menu megamenu max-w-75 ms-auto animate fade-down focus-trigger" role="menu">
<div class="container">
<div class="section-inner">
<div class="row g-3">
<div class="col-12 col-md-6">
<!-- <div class="megamenu-item">
<!-- Form -->
<!-- <div class="form-area scheme-1">
<form class="form-fields needs-validation" novalidate="novalidate">
<div class="form-row row has-icon">
<div class="form-col form-floating">
<button class="button overlay-button"><img class="overlay-image-icon"
src="assets/svg/send-outline.svg" alt="Icon name" data-dni-icon="32" /></button>
<input id="InputSearchNavbar" class="form-control focus-trigger-field"
name="InputSearchNavbar" placeholder="Type keywords..." required="required">
<label for="InputSearchNavbar" class="form-label">Type keywords...</label>
</div>
</div>
</form>
</div> -->
</div>
</div>
</div>
</div>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</nav>
</header>
<!-- Main -->
<main id="main" class="shock-main bg-color black">
<!-- D&I Friendly chat Contents -->
<section class="shock-section pt-5 pb-3">
<div class="container">
<!-- Intro -->
<div class="extended-intro max-w-85">
<div class="wrapper">
<div class="left-column">
<h2 class="title">
<span class="text-1 text-style-2 text-outline text-gradient scheme-2" data-text-color="#1e1e24">Python Membership Plans</span>
</h2>
</div>
</div>
</div>
</div>
</section>
<!-- Pricing table -->
<section class="shock-section pt-5 pb-5 js-switch-price">
<div class="container">
<!-- Intro -->
<div class="basic-intro mb-35 text-center">
<h2 class="title text-style-3">
<span class="text-1 text-outline gray-75">Become a</span>
<span class="text-2 text-italic white">Member of the PSF.</span>
</h2>
<span class="text">By becoming a member, you tell us and the world that you are a part of the PSF and support our work, and as one of the classes of voting members, you add your voice to the future direction of the Foundation. We're so happy to have you!
<br>
To be a supporting, managing, or contributing member (currently) folks must first become a basic member.
</span>
<br>
<hr class="gray-25">
<br>
<div class="row g-4">
<div class="col-12 col-md-6 col-lg-3">
<div class="card double-edge has-price parent">
<!-- Header -->
<div class="card-header pb-0 text-center">
<h3 class="title m-0 text-style-11 text-italic white">
<span class="bg-color black">BASIC</span>
<span class="zzz mt-1 mb-1 scheme-2 gray"></span>
</h3>
<!-- Price -->
<div class="price-wrapper">
<span class="price text-style-5 primary hover-up-down" style="color:#07beb8bf">Free</span>
</div>
<span class="text">Join the Python community!
</span>
</div>
<div class="card-body">
<!-- List -->
<ul class="checklist">
<li class="item">
<span class="text">Not eligible to vote</span>
<img class="image-icon white" src="assets/svg/close-outline.svg" alt="Icon name" data-shock-icon="32" />
</li>
</ul>
<!-- Button -->
<div class="button-wrapper align-h-right">
<span class="button arrow-button next scheme-2 primary">
<span class="arrow">
<span class="item"></span>
<span class="item"></span>
</span>
<span class="line"></span>
<span class="text">SIGN UP</span>
</span>
</div>
</div>
<!-- Link -->
<a href="https://www.python.org/psf/membership/" class="full-link">
<div class="overlay primary-25"></div>
</a>
</div>
</div>
<div class="col-12 col-md-6 col-lg-3">
<div class="card double-edge has-price parent">
<!-- Header -->
<div class="card-header pb-0 text-center">
<h3 class="title m-0 text-style-11 text-italic white">
<span class="bg-color black">SUPPORTING</span>
<span class="zzz mt-1 mb-1 scheme-2 gray"></span>
</h3>
<!-- Price -->
<div class="price-wrapper">
<span class="billing text-style-7 text-outline gray-75" style="color:#009df1"></span>
<span class="price text-style-5 secondary hover-up-down" style="color:#009df1" >From US $25*
</span>
<span class="billing text-style-11 gray-75" style="color:#009df1">/yr onwards</span><br>
<span class="text-italic">*Sliding pricing scale
</span>
</div>
</div>
<div class="card-body">
<!-- List -->
<ul class="checklist">
<span class="text">Donate to support the community and sustain the foundation
</span><br>
<br>
<li class="item">
<span class="text">Eligible to vote</span>
<img class="image-icon white" src="assets/svg/checkmark-outline.svg" alt="Icon name" data-shock-icon="32" />
</li>
</ul>
<!-- Button -->
<div class="button-wrapper align-h-right">
<span class="button arrow-button next scheme-2 secondary">
<span class="arrow">
<span class="item"></span>
<span class="item"></span>
</span>
<span class="line"></span>
<span class="text">SIGN UP
</span>
</span>
</div>
</div>
<!-- Link -->
<a href="https://psfmember.org/python-software-foundation-supporting-member-2/" class="full-link">
<div class="overlay secondary-25"></div>
</a>
</div>
</div>
<div class="col-12 col-md-6 col-lg-3">
<div class="card double-edge has-price parent">
<!-- Header -->
<div class="card-header pb-0 text-center">
<h3 class="title m-0 text-style-11 text-italic white">
<span class="bg-color black">MANAGING / CONTRIBUTING</span>
<span class="zzz mt-1 mb-1 scheme-2 gray"></span>
<br>
</h3>
<!-- Price -->
<div class="price-wrapper">
<span class="price text-style-5 tertiary hover-up-down" style="color:#ff1791">Free</span>
</div>
<span class="billing text-style-11 gray-75" style="color:#ff1791">Self Certified</span>
</div>
<div class="card-body">
<!-- List -->
<ul class="checklist">
<span class="text-white">Managing member:</span><br>
<span class="text">Min 5 hrs/month devoted to the community or PSF (Events, Projects, Workgroups)
</span><br>
<br>
<span class="text-white">Contributing member:</span><br>
<span class="text">Min 5 hrs/month devoted to open source projects related to PSF's mission (Create or maintain at no charge)
</span><br>
<br>
<li class="item">
<span class="text">Eligible to vote</span>
<img class="image-icon white" src="assets/svg/checkmark-outline.svg" alt="Icon name" data-shock-icon="32" />
</li>
</ul>
<!-- Button -->
<div class="button-wrapper align-h-right">
<span class="button arrow-button next scheme-2 tertiary">
<span class="arrow">
<span class="item"></span>
<span class="item"></span>
</span>
<span class="line"></span>
<span class="text">SIGN UP</span>
</span>
</div>
</div>
<!-- Link -->
<a href="https://psfmember.org/civicrm/contribute/transact/?reset=1&id=32" class="full-link">
<div class="overlay tertiary-25"></div>
</a>
</div>
</div>
<div class="col-12 col-md-6 col-lg-3">
<div class="card double-edge has-price parent">
<!-- Header -->
<div class="card-header pb-0 text-center">
<h3 class="title m-0 text-style-11 text-italic white">
<span class="bg-color black">FELLOW</span>
<span class="zzz mt-1 mb-1 scheme-2 gray"></span>
<br>
</h3>
<!-- Price -->
<div class="price-wrapper">
<span class="price text-style-7 tertiary hover-up-down" style="color:#fedc00">Nomination</span>
</div>
<span class="billing text-style-11 gray-75" style="color:#fedc00">only</span>
</div>
<div class="card-body">
<!-- List -->
<ul class="checklist">
<span class="text">Members nominated for their extraordinary efforts and impact upon Python, the community, and the broader Python ecosystem.
</span><br>
<br>
<li class="item">
<span class="text">Eligible to vote</span>
<img class="image-icon white" src="assets/svg/checkmark-outline.svg" alt="Icon name" data-shock-icon="32" />
</li>
</ul>
<!-- Button -->
<div class="button-wrapper align-h-right">
<span class="button arrow-button next scheme-2 accent">
<span class="arrow">
<span class="item"></span>
<span class="item"></span>
</span>
<span class="line"></span>
<span class="text">NOMINATE A FELLOW</span>
</span>
</div>
</div>
<!-- Link -->
<a href="https://www.python.org/psf/fellows/" class="full-link">
<div class="overlay accent opacity-25" ></div>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Divider -->
<section class="shock-section pt-2 pb-4">
<div class="container">
<span class="zzz scheme-2 gray-75"></span>
</div>
</section>
</main>
<!-- Side Widget -->
<div class="side-widget to-left invert-color mix-blend-difference d-only-desktop">
<div class="item h-50">
<a href="#modal" class="link black black-hover hover-up" data-bs-toggle="modal" data-bs-target="#modal">
<span class="widget label-vertical">
<span class="label-line black"></span>
<span class="label-text black">Get in Touch</span>
</span>
</a>
</div>
</div>
<!-- Scroll to Top -->
<div class="side-widget to-right invert-color mix-blend-difference">
<div class="item align-v-bottom">
<a href="#" class="link hover-up">
<span class="widget float-icon">
<i class="fa-solid fa-arrow-up-long icon"></i>
</span>
</a>
</div>
</div>
<!-- Modal -->
<div id="modal" class="modal fade" tabindex="-1" style="display: none;" aria-hidden="true">
<div class="modal-dialog max-w-50">
<div class="modal-content shadow rounded" data-bg-color="#1e1e24" style="background-color: rgb(30, 30, 36);">
<div class="modal-header">
<i class="fa-solid fa-xmark close-button white tertiary-hover" data-bs-dismiss="modal" aria-label="Close"></i>
<!-- Intro -->
<div class="basic-intro">
<h2 class="title text-style-5">
<span class="text-1 text-gradient scheme-2">How can we help you ?</span>
</h2>
<div class="description text-style-12 gray">
<p>Tell us a little bit more about you, how we can help you and we will get back to you shortly. 🥳</p>
</div>
</div>
</div>
<div class="modal-body">
<!-- Form -->
<div class="form-area scheme-2 secondary">
<form
class="form-fields needs-validation was-validated"
novalidate="novalidate"
action="https://api.sheetmonkey.io/form/gCtVFicg4GUkMaAFtyL1op"
method="post"
>
<input type="hidden" name="Created" value="x-sheetmonkey-current-date-time" />
<div class="form-row row">
<div class="form-col form-floating col-12 col-md-6">
<input id="InputFloatingName" class="form-control" type="text" placeholder="Name" required="required">
<label for="InputFloatingName" class="form-label">Name</label>
<div class="invalid-feedback">How do you want us to call you?</div>
<div class="valid-feedback">Looks good.</div>
</div>
<div class="form-col form-floating col-12 col-md-6">
<input id="InputFloatingEmail" class="form-control" type="email" placeholder="[email protected]"
required="required">
<label for="InputFloatingEmail" class="form-label">Email</label>
<div class="invalid-feedback">Please enter a valid email address.</div>
<div class="valid-feedback">Looks good! </div>
</div>
</div>
<div class="form-row row">
<div class="form-col form-floating col-12">
<textarea id="InputFloatingMessage" class="form-control form-textarea" rows="3"
placeholder="Enter your message." required="required"></textarea>
<label for="InputFloatingMessage" class="form-label">Message</label>
<div class="valid-feedback">How can we help you? :)</div>
</div>
</div>
<div class="form-row row">
<div class="form-col col-12 col-md-8">
</div>
<div class="form-col col-12 col-md-4 align-h-right">
<!-- Button -->
<button class="button gradient rounded-pill scheme-2 magnetic-effect"
style="transform: translate(0px, 0px);">
<span class="button-text white white-hover">Send Message</span>
<i class="fa-solid fa-arrow-right button-icon white white-hover"></i>
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer id="footer" class="dni-footer scheme-1 tertiary">
<div class="footer-content focus-trigger">
<div class="container">
<div class="row g-3">
<div class="col-12 col-md-6 col-lg-3">
<div class="footer-item">
<!-- Brand -->
<a href="/" class="footer-brand">
<!-- <div class="site-title">Site Title</div> -->
<img src="assets/images/logo-dni.svg" alt="PSF Diversity & Inclusion Workgroup" class="logo" />
<span class="logo-after-text">D&I Workgroup</span>
</a>
<img src="assets/images/png/psf-logo-white.png" class="image" alt="New York Statue of Liberty" />
<!-- Text -->
<div class="footer-text">
<p>The Diversity and Inclusion Working Group is a volunteer workgroup of the Python Software Foundation.
</p>
</div>
</div>
<div class="footer-item">
<!-- Icon list -->
<div class="list-wrapper">
<ul class="icon-h-list">
<li class="item">
<a href="https://twitter.com/ThePSF" class="link gray tertiary-hover hover-rotate"><i
class="icon fab fa-twitter"></i></a>
</li>
<li class="item">
<a href="https://www.linkedin.com/company/thepsf/" class="link gray tertiary-hover hover-rotate"><i
class="icon fab fa-linkedin-in"></i></a>
</li>
</ul>
</div>
</div>
<div class="footer-item">
<!-- Button -->
</div>
</div>
<div class="col-12 col-md-6 col-lg-3">
<div class="footer-item">
<h6 class="title">Popular Searches</h6>
<!-- Tag Cloud -->
<div class="tag-cloud">
<a href="#your-link" class="link">
<span class="badge outline gray-50 tertiary-hover">
<span class="badge-text gray white-hover">Stories</span>
</span>
</a>
<a href="#your-link" class="link">
<span class="badge outline gray-50 tertiary-hover floating-item-smooth">
<span class="badge-text gray white-hover">Events</span>
</span>
</a>
<a href="#your-link" class="link">
<span class="badge outline gray-50 tertiary-hover">
<span class="badge-text gray white-hover">Technology</span>
</span>
</a>
<a href="#your-link" class="link">
<span class="badge outline gray-50 tertiary-hover">
<span class="badge-text gray white-hover">Motivational</span>
</span>
</a>
<a href="#your-link" class="link">
<span class="badge outline gray-50 tertiary-hover">
<span class="badge-text gray white-hover">Heroes</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="bottom-bar">
<div class="text">© 2022 - All rights reserved. This website is maintained by the <a
href="https://www.python.org/psf-landing/" class="link gray primary-hover"><u>PSF</u></a> <a
href="https://wiki.python.org/psf/DiversityandInclusionWG" class="link gray primary-hover"><u>Diversity and
Inclusion</u></a> Workgroup.</div>
</div>
</footer>
<!-- Cursor -->
<svg class="cursor-effect tertiary" width="220" height="220" viewBox="0 0 220 220">
<defs>
<filter id="cursor-effect-filter" x="-50%" y="-50%" width="200%" height="200%" filterUnits="objectBoundingBox">
<feTurbulence type="fractalNoise" baseFrequency="0" numOctaves="1" result="warp"></feTurbulence>
<feOffset dx="-30" result="warpOffset"></feOffset>
<feDisplacementMap xChannelSelector="R" yChannelSelector="G" scale="20" in="SourceGraphic" in2="warpOffset">
</feDisplacementMap>
</filter>
</defs>
<circle class="cursor-effect-inner" cx="110" cy="110" r="20"></circle>
</svg>
<!-- Vendor JavaScript -->
<script src="assets/js/vendor/jquery.min.js"></script>
<script src="assets/js/vendor/imagesloaded.pkgd.min.js"></script>
<script src="assets/js/vendor/inview.min.js"></script>
<script src="assets/js/vendor/menu-engine.min.js"></script>
<script src="assets/js/vendor/menu-grid.min.js"></script>
<script src="assets/js/vendor/bootstrap.min.js"></script>
<script src="assets/js/vendor/swiper.min.js"></script>
<script src="assets/js/vendor/anime.min.js"></script>
<script src="assets/js/vendor/dynamic-slider.min.js"></script>
<script src="assets/js/vendor/shuffle.min.js"></script>
<script src="assets/js/vendor/stickybits.min.js"></script>
<script src="assets/js/vendor/bricklayer.min.js"></script>
<script src="assets/js/vendor/lightbox.min.js"></script>
<script src="assets/js/vendor/typed.min.js"></script>
<script src="assets/js/vendor/progressbar.min.js"></script>
<script src="assets/js/vendor/map-styles.min.js"></script>
<script src="assets/js/vendor/magnetic-effect.min.js"></script>
<script src='assets/js/vendor/gsap.min.js'></script>
<script src="assets/js/vendor/aos.min.js"></script>
<script src="assets/js/vendor/lax.min.js"></script>
<script src="assets/js/vendor/cursor-effect.min.js"></script>
<!-- Main JavaScript -->
<script src="assets/js/main.js"></script>
</body>
</html>