-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
851 lines (816 loc) · 50 KB
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>EndGBV-Home</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="Free Website Template" name="keywords">
<meta content="Free Website Template" name="description">
<!-- Favicon -->
<link href="img/favicon.ico" rel="icon">
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap"
rel="stylesheet">
<!-- CSS Libraries -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css" rel="stylesheet">
<link href="lib/flaticon/font/flaticon.css" rel="stylesheet">
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<!-- Template Stylesheet -->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/case.css">
</head>
<body>
<!-- Top Bar Start -->
<div class="top-bar d-none d-md-block">
<div class="container-fluid">
<div class="row">
<div class="col-md-8">
<div class="top-bar-left">
<div class="text">
<i class="fa fa-phone-alt"></i>
<p>+250785455562</p>
</div>
<div class="text">
<i class="fa fa-envelope"></i>
<p>info@EndGBVorg</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="top-bar-right">
<div class="social">
<a href="https://x.com/End_GBViolance?t=OyQQF5HbujZ3DqKJnMaVJQ&s=09"><i
class="fab fa-twitter"></i></a>
<a href="https://www.facebook.com/XMR55?mibextid=ZbWKwL" target="_blank"><i
class="fab fa-facebook-f"></i></a>
<a href="https://www.instagram.com/rameck_gisanintwari?igsh=aTc3MG5uN21wMzZw"
target="_blank"><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Top Bar End -->
<div class="navbar navbar-expand-lg bg-dark navbar-dark">
<div class="container-fluid">
<div class="ht-65 bd bg-gray-100 pd-x-20 d-flex align-items-center justify-content-between">
<a href="index.php">
<img src="img/logo.png" alt="Logo" class="logo-img">
</a>
</div>
<button type="button" class="navbar-toggler" data-toggle="collapse" data-target="#navbarCollapse"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-between" id="navbarCollapse">
<div class="navbar-nav ml-auto">
<button id="scrollButton">
Testimony
<div class="star-1">
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" version="1.1"
style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
viewBox="0 0 784.11 815.53" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs></defs>
<g id="Layer_x0020_1">
<metadata id="CorelCorpID_0Corel-Layer"></metadata>
<path class="fil0"
d="M392.05 0c-20.9,210.08 -184.06,378.41 -392.05,407.78 207.96,29.37 371.12,197.68 392.05,407.74 20.93,-210.06 184.09,-378.37 392.05,-407.74 -207.98,-29.38 -371.16,-197.69 -392.06,-407.78z">
</path>
</g>
</svg>
</div>
<div class="star-2">
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" version="1.1"
style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
viewBox="0 0 784.11 815.53" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs></defs>
<g id="Layer_x0020_1">
<metadata id="CorelCorpID_0Corel-Layer"></metadata>
<path class="fil0"
d="M392.05 0c-20.9,210.08 -184.06,378.41 -392.05,407.78 207.96,29.37 371.12,197.68 392.05,407.74 20.93,-210.06 184.09,-378.37 392.05,-407.74 -207.98,-29.38 -371.16,-197.69 -392.06,-407.78z">
</path>
</g>
</svg>
</div>
<div class="star-3">
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" version="1.1"
style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
viewBox="0 0 784.11 815.53" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs></defs>
<g id="Layer_x0020_1">
<metadata id="CorelCorpID_0Corel-Layer"></metadata>
<path class="fil0"
d="M392.05 0c-20.9,210.08 -184.06,378.41 -392.05,407.78 207.96,29.37 371.12,197.68 392.05,407.74 20.93,-210.06 184.09,-378.37 392.05,-407.74 -207.98,-29.38 -371.16,-197.69 -392.06,-407.78z">
</path>
</g>
</svg>
</div>
<div class="star-4">
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" version="1.1"
style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
viewBox="0 0 784.11 815.53" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs></defs>
<g id="Layer_x0020_1">
<metadata id="CorelCorpID_0Corel-Layer"></metadata>
<path class="fil0"
d="M392.05 0c-20.9,210.08 -184.06,378.41 -392.05,407.78 207.96,29.37 371.12,197.68 392.05,407.74 20.93,-210.06 184.09,-378.37 392.05,-407.74 -207.98,-29.38 -371.16,-197.69 -392.06,-407.78z">
</path>
</g>
</svg>
</div>
<div class="star-5">
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" version="1.1"
style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
viewBox="0 0 784.11 815.53" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs></defs>
<g id="Layer_x0020_1">
<metadata id="CorelCorpID_0Corel-Layer"></metadata>
<path class="fil0"
d="M392.05 0c-20.9,210.08 -184.06,378.41 -392.05,407.78 207.96,29.37 371.12,197.68 392.05,407.74 20.93,-210.06 184.09,-378.37 392.05,-407.74 -207.98,-29.38 -371.16,-197.69 -392.06,-407.78z">
</path>
</g>
</svg>
</div>
<div class="star-6">
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" version="1.1"
style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
viewBox="0 0 784.11 815.53" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs></defs>
<g id="Layer_x0020_1">
<metadata id="CorelCorpID_0Corel-Layer"></metadata>
<path class="fil0"
d="M392.05 0c-20.9,210.08 -184.06,378.41 -392.05,407.78 207.96,29.37 371.12,197.68 392.05,407.74 20.93,-210.06 184.09,-378.37 392.05,-407.74 -207.98,-29.38 -371.16,-197.69 -392.06,-407.78z">
</path>
</g>
</svg>
</div>
</button>
<a href="index.php" class="nav-item nav-link active">Home</a>
<a href="about.html" class="nav-item nav-link ">About</a>
<a href="causes.html" class="nav-item nav-link">Causes</a>
<!-- <a href="donate.html" class="nav-item nav-link">Donate</a> -->
<a href="contact.html" class="nav-item nav-link">Contact</a>
</div>
</div>
</div>
</div>
<!-- Nav Bar End -->
<!-- Carousel Start -->
<div class="carousel">
<div class="container-fluid">
<div class="owl-carousel">
<div class="carousel-item">
<div class="carousel-img">
<img src="https://img.freepik.com/free-photo/close-up-woman-expressing-revolution-message_23-2149066797.jpg?t=st=1721206692~exp=1721210292~hmac=d35a39f5f74d13dee132d51be70ebee3fbcb128ab763f799b470ae662802cc48&w=900"
alt="Image">
</div>
<div class="carousel-text">
<h1>Empowering Survivors to bounce back</h1>
<p>
Together, we can end the cycle of abuse. Stand
up, speak out, and support survivors. Every
action counts.
</p>
</div>
</div>
<div class="carousel-item">
<div class="carousel-img">
<img src="https://img.freepik.com/free-photo/close-up-sad-person-portrait_23-2150863823.jpg?t=st=1721206802~exp=1721210402~hmac=e33d9a9ae6bd2d34411d96ce3ba431aa2ac244d3173c0565f1757be41283fb63&w=900"
alt="Image">
</div>
<div class="carousel-text">
<h1>Let's break the silence on GBV and help victims, every action counts</h1>
<p>
Your support can make a difference. Join us in
providing aid and resources to those affected by
gender-based violence.
</p>
</div>
</div>
<div class="carousel-item">
<div class="carousel-img">
<img src="https://img.freepik.com/free-photo/medium-shot-depressed-people-indoors_23-2149699125.jpg?t=st=1721206345~exp=1721209945~hmac=8fa281a13edd533cc3b208f2bce46191d043b7ca5dc46d21a42650a46e3df657&w=900"
alt="Image">
</div>
<div class="carousel-text">
<h1>Bringing Hope to Survivors</h1>
<p>
Empowering survivors to rebuild their lives with
dignity and strength. Let's create a future free
from violence.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Carousel End -->
<!-- About Start -->
<div class="about">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="about-img" data-parallax="scroll"
data-image-src="https://img.freepik.com/free-photo/young-man-skin-texture-front-view_23-2149457613.jpg?t=st=1721206673~exp=1721210273~hmac=d320dc3330169e004a785d704b089279eddae9cdf3145342fb961879b81a2af4&w=740">
</div>
</div>
<div class="col-lg-6">
<div class="section-header">
<p>Learn About Us</p>
<h2>Rwanda based non-profit Platform</h2>
</div>
<div class="about-tab">
<ul class="nav nav-pills nav-justified">
<li class="nav-item">
<a class="nav-link active" data-toggle="pill" href="#tab-content-1">WHo WE ARE</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="pill" href="#tab-content-2">MISSION</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="pill" href="#tab-content-3">VISION</a>
</li>
</ul>
<div class="tab-content">
<div id="tab-content-1" class="container tab-pane active">
We are a dedicated platform that creates a safe and supportive space for survivors of
gender-based violence (GBV).</div>
<div id="tab-content-2" class="container tab-pane fade">
Empowering, Advocating and Healing of victims by providing a confidential space for
sharing testimonies, promoting healing, advocating for systemic change. Purposefully to
raise awareness about GBV, amplify survivor voices.
</div>
<div id="tab-content-3" class="container tab-pane fade">
Having a safe and supportive platform where survivors of GBV can share their
experiences, fostering awareness and driving collective action toward prevention and
justice.
</div>
</div>
</div>
</div>
</div>
</div>
<!-- About End -->
<!-- Service Start -->
<div class="service">
<div class="container">
<div class="blog-section">
<div class="content">
<p>What We Do?</p>
<h2>We believe that we can save more lives with
you by:</h2>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="service-item">
<div class="service-icon">
<i class="flaticon-charity"></i>
</div>
<div class="service-text">
<h3>Advocacy</h3>
<p>We strive to influence policies and
societal norms to prevent gender-based
violence and ensure justice for
survivors.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="service-item">
<div class="service-icon">
<i class="flaticon-water"></i>
</div>
<div class="service-text">
<h3>Support Services</h3>
<p>Our Platform provides critical
resources, including counseling, legal
assistance, and emergency shelters, to
help survivors rebuild their lives.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="service-item">
<div class="service-icon">
<i class="flaticon-healthcare"></i>
</div>
<div class="service-text">
<h3>Education and Outreach</h3>
<p>Online workshops, campaigns, and
community programs to educate the public
about the impacts of gender-based
violence and how to combat it.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="service-item">
<div class="service-icon">
<i class="flaticon-education"></i>
</div>
<div class="service-text">
<h3>Empowerment Programs</h3>
<p>Through skill-building, leadership
training, and empowerment initiatives,
we help survivors regain their
confidence and independence.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="service-item">
<div class="service-icon">
<i class="flaticon-home"></i>
</div>
<div class="service-text">
<h3>Awareness and Education</h3>
<p>We raise awareness about GBV through
campaigns, workshops, and educational
programs, empowering individuals with
knowledge and resources to recognize and
prevent violence.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="service-item">
<div class="service-icon">
<i class="flaticon-social-care"></i>
</div>
<div class="service-text">
<h3>Community Engagement</h3>
<p>We engage with communities to foster a
culture of respect, equality, and zero
tolerance towards GBV, encouraging
active participation in creating a
violence-free environment.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Service End -->
<!-- Causes Start -->
<div class="causes">
<div class="container">
<div class="blog-section">
<div class="content">
<!-- <p>Popular Causes</p> -->
<h1>Approaches of Fighting Gender based violences.</h2>
</div>
</div>
<div class="owl-carousel causes-carousel">
<div class="causes-item">
<div class="causes-img">
<img src="https://img.freepik.com/free-photo/people-showing-support-respect-with-yellow-background-suicide-prevention-day_23-2151607905.jpg?t=st=1723037902~exp=1723041502~hmac=7c184fb3b97531e8f22654998cc300449ef6f05102c7bc88e15e6e15b53e0f13&w=1060"
alt="Image">
</div>
<div class="causes-text">
<h3>Support Survivors of Gender-Based Violence</h3>
<p>
<strong>Self-Care Resources: </strong> Encourage survivors to engage in self-care
practices that promote physical and mental well-being, such as exercise, hobbies, and
relaxation techniques, Implement programs that focus on building self-esteem,
confidence, and personal empowerment, helping survivors regain control over their lives.
</p>
<a href="single.php">LearnMore</a>
</div>
</div>
<div class="causes-item">
<div class="causes-img">
<img src="https://img.freepik.com/free-photo/blogger-doing-product-review-laptop-keyboard_482257-26853.jpg?t=st=1723024941~exp=1723028541~hmac=f976bd8a259a78cd998df593d415292a57bf890458f0d1e9b8a7781e06993e6a&w=996"
alt="Image">
</div>
<div class="causes-text">
<h3>Educational Initiatives for Gender
Equality</h3>
<p>
<strong>Develop Engaging Content</strong> Create interactive and engaging content, such
as videos, infographics, and quizzes, to make learning about gender equality interesting
and accessible. Use storytelling and real-life examples to make the material relatable.
</p>
<a href="single.php">LearnMore</a>
</div>
</div>
<div class="causes-item">
<div class="causes-img">
<img src="https://img.freepik.com/free-photo/3d-cartoon-view-scales-justice_23-2151419497.jpg?t=st=1723028792~exp=1723032392~hmac=575309138ee0df5777a1545da6fa6bfc6a05eea04b322b43cdbd5df9bf08b93a&w=740"
alt="Image">
</div>
<div class="causes-text">
<h3>Legal Aid and Advocacy for Gender Justice</h3>
<p>
Create a Comprehensive Online Resource Hub: Develop a website or online portal that
offers accessible legal information, guides, and resources specifically related to
gender justice. Include information on rights, legal processes, and available support
services.
</p>
<p>
</p>
<a href="single.php">LearnMore</a>
</div>
</div>
</div>
</div>
</div>
<!-- Causes End -->
<!-- case Start -->
<div id="volunteer" class="volunteer" data-parallax="scroll"
data-image-src="https://img.freepik.com/free-photo/young-child-getting-physical-abuse-from-parent_23-2150248248.jpg?ga=GA1.1.1539293128.1720825832&semt=sph">
<div class="container">
<div class="row align-items-center" id="testimonial-section">
<div class="col-lg-5">
<div class="volunteer-form">
<form action="admin_pages/operations/send_case_to_db.php" id="multiStepForm" method="POST"
enctype="multipart/form-data">
<div class="form-step active">
<h4>Step 1: Personal Information</h4>
<label for="names">Names:</label>
<input type="text" id="names" name="names" required />
<label for="gender">Gender:</label>
<select name="gender" id="gender" required>
<option value="" disabled selected>Select your gender</option>
<option value="male">Male</option>
<option value="female">Female</option>
<option value="not-specified">Other</option>
</select>
<label for="marriage-status">Marriage Status:</label>
<select id="marriage-status" name="marriage-status" required>
<option value="" disabled selected>Select your status</option>
<option value="single">Single</option>
<option value="married">Married</option>
<option value="divorced">Divorced</option>
<option value="widowed">Widowed</option>
<option value="relationship">Relationship</option>
<option value="other">Other</option>
</select>
<button type="button" class="next-step">Next</button>
</div>
<div class="form-step">
<h4>Step 2: Education and Religion</h4>
<label for="education-level">Education Level:</label>
<select id="education-level" name="education-level" required>
<option value="" disabled selected>
Select your education level
</option>
<option value="no-formal-education">No Formal Education</option>
<option value="primary-education">Primary Education</option>
<option value="secondary-education">Secondary Education</option>
<option value="bachelor-degree">Bachelor's Degree</option>
<option value="master-degree">Master's Degree</option>
<option value="doctorate">Doctorate</option>
</select>
<label for="religion-beliefs">Religion Beliefs:</label>
<select id="religion-beliefs" name="religion-beliefs" required>
<option value="" disabled selected>Select your religion</option>
<option value="christianity">Christianity</option>
<option value="islam">Islam</option>
<option value="hinduism">Hinduism</option>
<option value="buddhism">Buddhism</option>
<option value="judaism">Judaism</option>
<option value="atheism">Atheism</option>
<option value="other">Other</option>
</select>
<label for="display-name">Display Name:</label>
<select id="display-name" name="display-name" required>
<option value="1">Yes, display my name</option>
<option value="0">No, keep me anonymous</option>
</select>
<button type="button" class="prev-step">Previous</button>
<button type="button" class="next-step">Next</button>
</div>
<div class="form-step">
<h4>Step 3: Contact Information</h4>
<label for="residence">Place of Residence:</label>
<input type="text" id="residence" name="residence" required />
<label for="phone">Phone Numbers:</label>
<input type="tel" id="phone" name="phone" required />
<label for="email">Email:</label>
<input type="text" id="social-media" name="email" required />
<button type="button" class="prev-step">Previous</button>
<button type="button" class="next-step">Next</button>
</div>
<div class="form-step">
<h4>Step 4: Type of Case</h4>
<label for="case-type">Select Type of Case:</label>
<select id="case-type" name="case-type" required>
<option value="physical-violence">Physical Violence</option>
<option value="sexual-violence">Sexual Violence</option>
<option value="emotional-psychological-violence">
Emotional Psychological Violence
</option>
<option value="harmful-traditional-practices">
Harmful Traditional Practices and Customs
</option>
<option value="online-digital-violence">
Online and Digital Violence
</option>
<option value="structural-violence">Structural Violence</option>
<option value="economic-violence">Economic Violence</option>
</select>
<button type="button" class="prev-step">Previous</button>
<button type="button" class="next-step">Next</button>
</div>
<div class="form-step">
<h4>Step 5: Case Overview and Attachments</h4>
<label for="case-overview">Case Overview:</label>
<textarea id="case-overview" name="case-overview" required></textarea>
<label for="attachments">Attachments:</label>
<input type="file" id="attachments" name="attachments" multiple />
<button type="button" class="prev-step">Previous</button>
<button type="button" class="next-step">Next</button>
</div>
<div class="form-step">
<h4>Step 6: Victim's Assistance Suggestion</h4>
<label for="assistance-suggestion">Victim’s Assistance Suggestion:</label>
<textarea id="assistance-suggestion" name="assistance-suggestion"
required></textarea>
<button type="button" class="prev-step">Previous</button>
<button type="submit" name="submit">submit</button>
</div>
</form>
</div>
</div>
<div class="col-lg-7">
<div class="volunteer-content">
<div class="section-header">
<p>Empowering Voices Against Gender-Based Violence</p>
<h2>Your Safety and Anonymity: Our Top Priorities"</h2>
</div>
<div class="volunteer-text">
<p>
Dear Brave Souls, Your courage to share your experiences with
gender-based violence is a beacon of hope and strength for
countless others. Each testimonial is not just a story; it’s a
powerful testament to resilience and the unyielding human spirit.
By coming forward, you are not only shedding light on the darkness
but also empowering others to find their voices.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Member End -->
<!-- Contact Start -->
<div class="contact">
<div class="container">
<div class="blog-section">
<div class="content">
<p>Get In Touch</p>
<h2>Contact for any query</h2>
</div>
</div>
<div class="contact-img">
<img src="https://img.freepik.com/premium-photo/focused-africanamerican-woman-exhibits-stop-symbol-holding-her-open-palm_868783-41352.jpg?ga=GA1.1.1539293128.1720825832&semt=ais_user"
alt="Image">
</div>
<div class="contact-form">
<div id="thanksMessage" class="hidden"></div> <!-- Hidden "thanks" message -->
<form name="sentMessage" id="contactForm" novalidate="novalidate" method="POST"
action="admin_pages/operations/send_mail_to_db.php">
<div class="control-group">
<input type="text" class="form-control" id="name" placeholder="Your Name" name="name"
required="required" data-validation-required-message="Please enter your name" />
<p class="help-block text-danger"></p>
</div>
<div class="control-group">
<input type="email" class="form-control" name="email" placeholder="Your Email" email="email"
required="required" data-validation-required-message="Please enter your email" />
<p class="help-block text-danger"></p>
</div>
<div class="control-group">
<input type="text" class="form-control" id="subject" placeholder="Subject" name="subject"
required="required" data-validation-required-message="Please enter a subject" />
<p class="help-block text-danger"></p>
</div>
<div class="control-group">
<textarea class="form-control" id="message" placeholder="Message" name="message"
required="required"
data-validation-required-message="Please enter your message"></textarea>
<p class="help-block text-danger"></p>
</div>
<div>
<button class="btn btn-custom" type="submit">Send Message</button>
</div>
</form>
</div>
</div>
</div>
<!-- Contact End -->
<!-- Blog Start -->
<div class="blog">
<div class="container">
<div class="blog-section">
<div class="content">
<p>SAY NO TO GENDER BASED VIOLENCE</p>
<h2>Testimonials From Our Community</h2>
</div>
</div>
<div class="row">
<div class="container">
<div class="row">
<?php
$stories = [
[
"id" => 1,
"title" => "Escaping the Nightmare",
"shortDescription" => "Jane's life changed forever when she met her abuser at 16...",
"fullStory" => "Jane's life took a dark turn when she met her abuser at the tender age of 16. What started as a seemingly innocent relationship quickly spiraled into a nightmare of control and abuse. For years, Jane endured physical and emotional torment, isolated from friends and family. But with the help of a supportive colleague and a local women's shelter, she found the strength to break free. Today, Jane is an advocate for domestic violence survivors, sharing her story to inspire hope in others facing similar struggles.",
"image" => "https://images.unsplash.com/photo-1640573819451-f9ae97e48f77?w=400&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTgzfHx2aW9sZW5jZXxlbnwwfHwwfHx8MA%3D%3D"
],
[
"id" => 2,
"title" => "Community Involvement",
"shortDescription" => "Read about our community involvement and how you can contribute to our cause.",
"fullStory" => "Our organization has been at the forefront of combating domestic violence through various community initiatives. From hosting awareness workshops in schools to partnering with local businesses for fundraising events, we've made significant strides in breaking the silence surrounding abuse. Our volunteer program has grown exponentially, with dedicated individuals offering their time and skills to support survivors. By fostering a network of care and understanding, we're creating a safer community for all. Join us in our mission - whether through volunteering, donations, or simply spreading awareness, every action counts in our collective fight against domestic violence.",
"image" => "https://media.istockphoto.com/id/1349240822/photo/parental-violence.webp?b=1&s=170667a&w=0&k=20&c=xlZuI0L83FsIjxJIau4OY2orUuSU7geYZM31KQu3Tm4="
],
[
"id" => 3,
"title" => "Breaking Free from Silence",
"shortDescription" => "For years, Sarah suffered in silence, afraid to speak out.",
"fullStory" => "Sarah's story is one of resilience and courage. For years, she endured abuse behind closed doors, afraid to speak out due to threats and manipulation from her partner. The turning point came when she confided in a coworker who recognized the signs of abuse and offered support. With guidance from a domestic violence hotline, Sarah carefully planned her escape. It wasn't easy - she faced financial hardships and emotional turmoil - but with each passing day, she grew stronger. Today, Sarah is rebuilding her life, pursuing her dreams, and helping other survivors find their voice. Her journey from victim to survivor serves as a powerful reminder that it's never too late to reclaim one's life and dignity.",
"image" => "https://media.istockphoto.com/id/1271523891/photo/man-threatening-a-woman-in-the-bedroom.webp?b=1&s=170667a&w=0&k=20&c=czJqfx5WCZoYYDQYh7blKSN6QrHecV1d0V_n5lBSYr4="
]
];
foreach ($stories as $story) {
echo "<div class='col-sm-12 col-sm-6 col-lg-4'>";
echo "<div class='story-card'>";
echo "<img src='{$story['image']}' alt='{$story['title']}' class='story-image'>";
echo "<div class='story-content'>";
echo "<h3 class='story-title'>{$story['title']}</h3>";
echo "<p class='story-description'>{$story['shortDescription']}</p>";
echo "<a href='#' class='read-more-btn' data-story-id='{$story['id']}'>Read Full Story</a>";
echo "</div>";
echo "</div>";
echo "</div>";
}
?>
</div>
</div>
<div id="storyModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<h2 id="modalTitle"></h2>
<img id="modalImage" src="" alt=""
style="width: 100%; height: 200px; object-fit: cover; margin-bottom: 20px;">
<p id="modalContent"></p>
</div>
</div>
</div>
</div>
</div>
<!-- Blog End -->
<!-- Team section start -->
<!-- Team section ends -->
<!-- Footer Start -->
<div class="footer">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="footer-contact">
<h2>Our Head Office</h2>
<p><i class="fa fa-map-marker-alt"></i>Kigali KN20 Street </p>
<p><i class="fa fa-phone-alt"></i>+250785455562</p>
<p><i class="fa fa-envelope"></i>[email protected]</p>
<div class="footer-social">
<a class="btn btn-custom"
href="https://x.com/End_GBViolance?t=OyQQF5HbujZ3DqKJnMaVJQ&s=09" target="_blank"><i
class="fab fa-twitter"></i></a>
<a class="btn btn-custom"
href="https://www.instagram.com/rameck_gisanintwari?igsh=aTc3MG5uN21wMzZw"
target="_blank"><i class="fab fa-instagram"></i></a>
<a class="btn btn-custom" href="https://www.facebook.com/XMR55?mibextid=ZbWKwL"
target="_blank"><i class="fab fa-facebook-f"></i></a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="footer-link">
<h2>Popular Links</h2>
<a href="about.html">About Us</a>
<a href="contact.html">Contact Us</a>
<a href="causes.html">Popular Causes</a>
<a href="event.html">Upcoming Events</a>
<a href="volunteer.html">Become a Member</a>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="footer-link">
<h2>Useful Links</h2>
<a href="terms.html">Terms of use</a>
<a href="privacy.html">Privacy policy</a>
<a href="admin_login.php">Administrator</a>
<a href="team.html">Our Team</a>
<a href="question.html">FAQs</a>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="footer-newsletter">
<h2>Newsletter</h2>
<form>
<input class="form-control" placeholder="Email goes here">
<button class="btn btn-custom">Submit</button>
<label>Don't worry, we don't spam!</label>
</form>
</div>
</div>
</div>
</div>
<div class="container copyright">
<div class="row">
<div class="col-md-6">
<a href="terms.html">Terms & Conditions</a> |
<a href="privacy.html">Privacy Policy</a>
</div>
<!-- terms & condition -->
<div class="col-md-6 text-md-right">
<p>
Developed by <a href="https://www.rwegohub.com/" target="_blank">Rwegohub</a> | © 2024 All
Rights Reserved
<a href="www.EndGBV.com"></a>
</p>
</div>
</div>
</div>
</div>
<!-- Footer End -->
<!-- Back to top button -->
<a href="#" class="back-to-top"><i class="fa fa-chevron-up"></i></a>
<!-- Pre Loader -->
<div id="loader" class="show">
<div class="loader"></div>
</div>
<!-- JavaScript Libraries -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.bundle.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<script src="lib/waypoints/waypoints.min.js"></script>
<script src="lib/counterup/counterup.min.js"></script>
<script src="lib/parallax/parallax.min.js"></script>
<!-- Contact Javascript File -->
<script src="mail/jqBootstrapValidation.min.js"></script>
<script src="mail/contact.js"></script>
<script src="js/testmo.js"></script>
<script src="js/thanks.js"></script>
<!-- Template Javascript -->
<script src="js/main.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<!-- scroll to the case form on click -->
<script>
document.getElementById('scrollButton').addEventListener('click', function () {
document.getElementById('volunteer').scrollIntoView({
behavior: 'smooth'
});
});
</script>
<!-- subscribtion pop up -->
<script>
var modal = document.getElementById("storyModal");
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// Get all "Read Full Story" buttons
var btns = document.getElementsByClassName("read-more-btn");
// Add click event to all buttons
for (var i = 0; i < btns.length; i++) {
btns[i].onclick = function (e) {
e.preventDefault();
var storyId = this.getAttribute("data-story-id");
openModal(storyId);
}
}
// Function to open modal and populate it with story content
function openModal(storyId) {
// In a real application, you would fetch this data from the server
// For this example, we'll use the PHP array we defined earlier
var stories = <?php echo json_encode($stories); ?>;
var story = stories.find(s => s.id == storyId);
if (story) {
document.getElementById("modalTitle").innerText = story.title;
document.getElementById("modalImage").src = story.image;
document.getElementById("modalImage").alt = story.title;
document.getElementById("modalContent").innerText = story.fullStory;
modal.style.display = "block";
}
}
// When the user clicks on <span> (x), close the modal
span.onclick = function () {
modal.style.display = "none";
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function (event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
</script>
</body>
</html>