forked from devashish-4123/finalhackoverflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
538 lines (475 loc) · 26.1 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
<!DOCTYPE html>
<html lang="zxx">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="description" content="" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Title -->
<title>NGO-Connect</title>
<!-- Favicon Icon -->
<link rel="shortcut icon" href="assets/images/favicon1.png" type="image/x-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Catamaran:wght@400;500;600&family=Kumbh+Sans:wght@400;500;700&family=Shadows+Into+Light&display=swap" rel="stylesheet">
<!-- Flaticon -->
<link rel="stylesheet" href="assets/css/flaticon.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="assets/css/fontawesome-5.14.0.min.css">
<!-- Bootstrap -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<!-- Magnific Popup -->
<link rel="stylesheet" href="assets/css/magnific-popup.min.css">
<!-- Nice Select -->
<link rel="stylesheet" href="assets/css/nice-select.min.css">
<!-- Type Writer -->
<link rel="stylesheet" href="assets/css/jquery.animatedheadline.css">
<!-- Animate -->
<link rel="stylesheet" href="assets/css/animate.min.css">
<!-- Slick -->
<link rel="stylesheet" href="assets/css/slick.min.css">
<!-- Main Style -->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body class="home-one">
<div id="start" class="page-wrapper">
<!-- Preloader -->
<div class="preloader"></div>
<!-- main header -->
<header class="main-header header-two">
<!--Header-Upper-->
<div class="header-upper">
<div class="container clearfix">
<div class="header-inner rel d-flex align-items-center">
<div class="logo-outer">
<div class="logo"><a href="index.html"><img src="index_image/logo.png" style="width:200ox; height:100px;padding:0;margin:0;" alt="Logo" title="Logo"></a></div>
</div>
<div class="nav-outer clearfix">
<!-- Main Menu -->
<nav class="main-menu navbar-expand-lg">
<div class="navbar-header">
<div class="mobile-logo my-15">
<a href="index.html">
<img src="images/logo.jpg" alt="Logo" title="Logo">
</a>
</div>
<!-- Toggle Button -->
<button type="button" class="navbar-toggle" data-bs-toggle="collapse" data-bs-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse clearfix">
<ul class="navigation clearfix">
<li ><a href="#">Home</a>
</li>
<li ><a href="#Service">Service</a>
</li>
<li ><a href="#Contribute">Contribute</a>
</li>
<li><a href="#Team">Team</a>
</li>
</div>
</nav>
<!-- Main Menu End-->
</div>
<!-- Menu Button -->
<div class="menu-btns">
<!-- menu sidbar -->
<div class="menu-sidebar">
<button>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
</div>
</div>
</div>
</div>
<!--End Header Upper-->
</header>
<!--Form Back Drop-->
<div class="form-back-drop"></div>
<!-- Hidden Sidebar -->
<section class="hidden-bar">
<div class="inner-box text-center">
<button type="submit" style="background:transparent;">
<h4>Log Out</h4>
</button>
<div class="cross-icon"><span class="fa fa-times"></span></div>
<div class="title">
<h4>Contact Us</h4>
</div>
<!--Appointment Form-->
<!--Social Icons-->
<div class="social-style-one">
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-pinterest-p"></i></a>
</div>
</div>
</section>
<!--End Hidden Sidebar -->
<!-- Slider Section Start -->
<section class="main-slider-area bgc-black-with-lighting rel z-1">
<div class="main-slider-active">
<div class="slider-item">
<div class="container">
<div class="slider-content">
<span class="sub-title">Assisting NGOS for web design solutions</span>
<h1>We Connect NGOs with tech</h1>
<div class="slider-btns">
<a href="" class="theme-btn">You Are Signed In <i class="fas fa-angle-double-right"></i></a>
</div>
</div>
</div>
<div class="slider-video" style="background-image: url(index_image/slide1.jpg);">
<span class="video-title cd-headline clip">
<span class="cd-words-wrapper">
<b class="is-visible">Web Design</b>
<b>Development</b>
</span>
</span>
</div>
</div>
<div class="slider-item">
<div class="container">
<div class="slider-content">
<span class="sub-title">Assisting NGOS for web design solutions</span>
<h1>We Connect NGOs with tech</h1>
<div class="slider-btns">
<a href="" class="theme-btn">You Are Signed In <i class="fas fa-angle-double-right"></i></a>
</div>
</div>
</div>
<div class="slider-video" style="background-image: url(index_image/slide2.jpg);">
<span class="video-title cd-headline clip">
<span class="cd-words-wrapper">
<b class="is-visible">Web Design</b>
<b>Development</b>
</span>
</span>
</div>
</div>
</div>
<div class="container"><div class="main-slider-dots"></div></div>
<div class="slider-shapes">
<img class="shape dots one" src="assets/images/shapes/slider-dots.png" alt="Shape">
<img class="shape dots two" src="assets/images/shapes/slider-dots.png" alt="Shape">
<img class="shape wave-line" src="assets/images/shapes/slider-wave-line.png" alt="Shape">
<img class="shape circle" src="assets/images/shapes/slider-circle.png" alt="Shape">
</div>
</section>
<!-- Slider Section End -->
<!-- Core Feature start -->
<section id="Service class="feature-area-five bgc-lighter pt-100 pb-70">
<div class="container">
<div class="section-title text-center mb-60 wow fadeInUp delay-0-2s">
<span class="sub-title mb-10">WE PROVIDE</span>
<h2>GET TEMPLATES FOR YOUR NGO<br>FOR FREE</h2>
</div>
<!-- <div class="row row-cols-xl-6 row-cols-lg-4 row-cols-md-3 row-cols-sm-2 row-cols-1 justify-content-center">
<div class="col wow fadeInUp delay-0-2s">
<div class="feature-item-five">
<i class="flaticon-responsive"></i>
<h5><a href="service-details.html">DESIGN 1</a></h5>
</div>
</div> -->
<div class="col wow fadeInUp delay-0-3s">=
<div class="feature-item-five">
<i class="flaticon-feature"></i>
<h5><a href="ngoform.php" style="color:black;">Tell Us About Your NGO</a></h5>
</div>
</div>
<!-- <div class="col wow fadeInUp delay-0-4s">
<div class="feature-item-five">
<i class="flaticon-aim"></i>
<h5><a href="service-details.html">DESIGN 3</a></h5>
</div>
</div> -->
<br>
<br>
</section>
<!-- Core Feature end -->
<section class="statistics-area-three bgs-cover pb-100 rel z-1">
<div class="container">
<div class="row justify-content-between align-items-center">
<div class="col-lg-7">
<div class="statistics-three-content rmb-65 wow fadeInRight delay-0-2s">
<div class="row justify-content-center justify-content-xl-start">
<div class="col-xl-9">
<div class="section-title mb-60">
<span class="sub-title mb-15">PRO Customers</span>
<h2>We Provide Personal assitance to Our Pro Customers </h2>
</div>
</div>
<div class="col-xl-4 col-lg-6 col-md-4 col-sm-6">
<div class="counter-item style-two counter-text-wrap wow fadeInRight delay-0-3s">
<i class="flaticon-startup"></i>
<span class="counter-title">Build A Website from scratch</span>
<p>Get In touch with us </p>
</div>
</div>
<div class="col-xl-4 col-lg-6 col-md-4 col-sm-6">
<div class="counter-item style-two counter-text-wrap wow fadeInRight delay-0-5s">
<i class="flaticon-global"></i>
<span class="counter-title">What Do We Provide</span>
<p>Special Features You can get access To</p>
</div>
</div>
<div class="col-xl-4 col-lg-6 col-md-4 col-sm-6">
<div class="counter-item style-two counter-text-wrap wow fadeInRight delay-0-3s">
<i class="flaticon-startup"></i>
<span class="counter-title">Modify Our Own Templates</span>
<p>Contact Our Support</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-5">
<div class="statistics-three-image bg-squire-shape mb-30 wow fadeInLeft delay-0-3s">
<img src="assets/images/about/statictics.jpg" alt="Statictics">
<img class="image-right" src="assets/images/shapes/image-right.png" alt="shape">
</div>
</div>
</div>
</div>
</section>
<section class="work-process-area pb-95 rel z-1">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-10">
<div class="section-title text-center mb-55 wow fadeInUp delay-0-2s">
<span class="sub-title mb-15">For PRO CLients</span>
<h2>How do we work</h2>
</div>
</div>
</div>
<div class="work-process-wrap rel z-1">
<div class="row justify-content-between">
<div class="col-xl-3 col-lg-5 col-sm-6">
<div class="work-process-item mt-30 wow fadeInUp delay-0-2s">
<div class="icon">
<span class="number">01</span>
<i class="flaticon-optimization"></i>
</div>
<h4>Info Gathering</h4>
<p>getting in touch with Cliet On personal level and knowing there requirments</p>
</div>
</div>
<div class="col-xl-3 col-lg-5 col-sm-6">
<div class="work-process-item wow fadeInUp delay-0-4s">
<div class="icon">
<span class="number">02</span>
<i class="flaticon-link"></i>
</div>
<h4>Idea Planning</h4>
<p>Plan the Build up accordingly</p>
</div>
</div>
<div class="col-xl-3 col-lg-5 col-sm-6">
<div class="work-process-item mt-55 wow fadeInUp delay-0-6s">
<div class="icon">
<span class="number">03</span>
<i class="flaticon-data"></i>
</div>
<h4>Design Analysis</h4>
<p>Design Multiple Templates for discussed idea</p>
</div>
</div>
<div class="col-xl-3 col-lg-5 col-sm-6">
<div class="work-process-item mt-45 wow fadeInUp delay-0-8s">
<div class="icon">
<span class="number">04</span>
<i class="flaticon-star"></i>
</div>
<h4>Testing & Lunch</h4>
<p>Testing the Finalized prototype with the Client </p>
</div>
</div>
</div>
<div class="work-process-shape">
<img src="assets/images/shapes/worp-process-step.png" alt="Shape">
</div>
</div>
</div>
</section>
<!-- CONTRIBUTIONS-->
<section id="Contribute" class="about-area-one pt-130 pb-125 rel z-1">
<div class="container">
<div class="row justify-content-between align-items-center">
<div class="col-lg-5">
<div class="about-image-one bg-squire-shape rmb-85 wow fadeInUp delay-0-2s">
<img src="assets/images/about/about-one.jpg" alt="About us">
<img class="image-left" src="assets/images/shapes/image-left.png" alt="shape">
</div>
</div>
<div class="col-xl-6 col-lg-7">
<div class="about-content-one wow fadeInUp delay-0-4s">
<div class="section-title mb-45">
<span class="sub-title mb-15">About Contributions</span>
<h2>Contribute Us With Your Designs</h2>
</div>
<ul class="list-style-one">
<li>
<div class="content">
<h4>GuideLines to Upload your Template</h4>
<p>-IF UPLOADING FROM LOCAL FILES<br>
-Upload your Template which can be Used for a NGO <br>
-The Folder Should be in Zip format<br>
-If backend done, Please upload the database Query files<br>
-Include a text files mentioning your Tech Stack Used
</p>
</div>
</li>
<li>
<div class="content">
<h4>UPLOAD</h4>
<a href="upload.php" class="theme-btn">Click here to Proceed <i class="fas fa-angle-double-right"></i></a> </div>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- About Us Area end -->
<!-- PRO CUSTOMERS-->
<!-- Statistics Three Area end -->
<!-- Design Featured Start -->
<section id="Team" class="work-process-area pb-95 rel z-1">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-10">
<div class="section-title text-center mb-55 wow fadeInUp delay-0-2s">
<span class="sub-title mb-15">TEAM</span>
<h2>Our Founders</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<div class="pricing-item-two wow fadeInUp delay-0-2s">
<h4 class="title">Jayesh Chauadhari</h4>
<div class="pricing-inner">
<ul class="list-style-two">
<li>2nd Year Engineering</li>
<li>Computer Branch</li>
<li>Mumbai University</li>
</ul>
<div class="price-and-btn">
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="pricing-item-two wow fadeInUp delay-0-2s">
<h4 class="title">Devashish Jawale</h4>
<div class="pricing-inner">
<ul class="list-style-two">
<li>2nd Year Engineering</li>
<li>Computer Branch</li>
<li>Mumbai University</li>
</ul>
<div class="price-and-btn">
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="pricing-item-two wow fadeInUp delay-0-2s">
<h4 class="title">Atharv Chavan</h4>
<div class="pricing-inner">
<ul class="list-style-two">
<li>2nd Year Engineering</li>
<li>Computer Branch</li>
<li>Mumbai University</li>
</ul>
<div class="price-and-btn">
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="pricing-item-two wow fadeInUp delay-0-2s">
<h4 class="title">Shivankur Chavan</h4>
<div class="pricing-inner">
<ul class="list-style-two">
<li>2nd Year Engineering</li>
<li>Computer Branch</li>
<li>Mumbai University</li>
</ul>
<div class="price-and-btn">
</div>
</div>
</div>
</div>
</div>
<div class="work-process-shape">
<img src="assets/images/shapes/worp-process-step.png" alt="Shape">
</div>
</div>
</div>
</section>
<!-- footer area start -->
<footer class="main-footer footer-two pt-80 bgc-lighter">
<div class="container">
<div class="row justify-content-xl-between justify-content-center">
<div class="col-xl-4 col-lg-5 col-md-6">
<div class="footer-widget widget_about me-md-5 wow fadeInUp delay-0-2s">
<div class="footer-logo mb-25">
<a href="#start"><img src="index_image/logo.png" style="width:170ox; height:80px;" alt="Logo"></a>
</div>
<p>ispum Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nisi fugiat dolore veritatis similique reiciendis quas qui harum quae officia libero possimus quo eum, aliquid ab quod blanditiis? Vel, sit distinctio?</p>
</div>
</div>
<div class="col-xl-4 col-md-6">
<div class="footer-widget widget_nav_menu wow fadeInUp delay-0-4s">
<h4 class="footer-title">Connect With Us</h4>
<div class="social-style-two pt-5">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
<a href="#"><i class="fab fa-behance"></i></a>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- footer area end -->
<!-- Scroll Top Button -->
<button class="scroll-top scroll-to-target" data-target="html"><span class="fas fa-angle-double-up"></span></button>
</div>
<!--End pagewrapper-->
<!-- Jquery -->
<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script src="assets/js/jquery-3.6.0.min.js"></script>
<!-- Bootstrap -->
<!-- <script src="assets/js/bootstrap.min.js"></script> -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<!-- Appear Js -->
<script src="assets/js/appear.min.js"></script>
<!-- Slick -->
<script src="assets/js/slick.min.js"></script>
<!-- Magnific Popup -->
<script src="assets/js/jquery.magnific-popup.min.js"></script>
<!-- Nice Select -->
<script src="assets/js/jquery.nice-select.min.js"></script>
<!-- Image Loader -->
<script src="assets/js/imagesloaded.pkgd.min.js"></script>
<!-- Type Writer -->
<script src="assets/js/jquery.animatedheadline.min.js"></script>
<!-- Circle Progress -->
<script src="assets/js/circle-progress.min.js"></script>
<!-- Isotope -->
<script src="assets/js/isotope.pkgd.min.js"></script>
<!-- WOW Animation -->
<script src="assets/js/wow.min.js"></script>
<!-- Custom script -->
<script src="assets/js/script.js"></script>
</body>
</html>