-
Notifications
You must be signed in to change notification settings - Fork 8
/
donate.php
executable file
·102 lines (69 loc) · 3.77 KB
/
donate.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
<!doctype html>
<html lang="en">
<head>
<?php
require 'pages/head.php';
?>
</head>
<body class=" ">
<?php
require 'pages/nav2.php';
?>
<div class="main-container">
<section class="imagebg image--dark cover cover-blocks bg--secondary" data-overlay="6">
<div class="background-image-holder">
<img alt="background" src="https://images.unsplash.com/photo-1483639033054-d6b9cf0eb19c?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=d30612e8a87e2d2c7c33808abe456263&auto=format&fit=crop&w=1600&q=80" />
</div>
<div class="container">
<div class="row">
<div class="col-sm-6 col-md-5 ">
<div>
<h2>Donate today</h2>
<p class="lead">
As a non-profit organization, donations are key to sustaining our passion to create awareness and 'nuture' more well rounded leaders in Africa through tech.
</p>
<hr class="short">
<!--donate from paypal tho-->
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="BULZRRNJJKKHL">
<input type="image" src="images/PayPal-Donate-Button-PNG-Clipart.png" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!" style="background: transparent;padding: 0">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
<!---end of donate from paypal-->
</div>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<section class="text-center">
<div class="container">
<div class="row">
<div>
</div>
<h2>Support FavCode54 Today!</h2>
<div class="lead">Your donations goes towards providing free internet access to students, constant electricity, well equipped facilities, course work, and most importantly impacting the life of a family through technology.
Your donations will go a long way to get someone off the streets, into the classrooms, and on their way to a dignified job with a local company.
We believe in giving generously as we have received generously.</div>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="BULZRRNJJKKHL">
<input type="image" src="images/PayPal-Donate-Button-PNG-Clipart.png" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!" style="background: transparent;padding: 0">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<?php
require 'pages/footer.php';
?>
</div>
<?php
require 'pages/scripts.php';
?>
</body>
</html>