-
Notifications
You must be signed in to change notification settings - Fork 1
/
donate.php
132 lines (116 loc) · 4.62 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
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
<!DOCTYPE html>
<!-- saved from url=(0030)http://bootswatch.com/default/ -->
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title>Catalyst 4 Success</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="custom/custom-bootstrap.css" media="screen">
<link rel="stylesheet" href="files/styles.css" media="screen">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="../bower_components/html5shiv/dist/html5shiv.js"></script>
<script src="../bower_components/respond/dest/respond.min.js"></script>
<![endif]-->
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
</head>
<body>
<?php include("navbar.php") ?>
<br>
<div class="container" style="width:55%">
<div class="contribute">
<h1><center>How to contribute</center></h1>
</div>
<br>
<div class="row">
<div class="col-md-6">
<div class="panel panel-default">
<center><h4 class="fa fa-pencil-square-o"> Check</h4></center>
</div>
<p style="padding-left:40px"> Payable to Catalyst for Success<br><br>Mail to:<br>Catalyst for Success<br>5940 Pacific Mesa Ct. Suite 202<br>San Diego, CA 92121<br></p>
</div>
<div class="col-md-6">
<div class="panel panel-default">
<center><h4 class="fa fa-money"> Cash</h4></center>
</div>
<p style="padding-left:40px">(contact us at info@catalyst4success.org)</p>
</div>
</div><br><br>
<div class="row">
<div class="col-md-6">
<div class="panel panel-default">
<center><h4 class="fa fa-credit-card"> Credit Card</h4></center>
</div>
<p style="padding-left:40px">(contact us at info@catalyst4success.org)</p>
</div>
<div class="col-md-6">
<div class="panel panel-default">
<center><h4 class="fa fa-laptop"> Online</h4></center>
</div>
<p style="padding-left:40px">PayPal - The safer, easier way to pay online!</p>
<center>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<br><input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="ME7VXQHK4BVRC">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
</center>
</div>
</div>
</div>
<br><br><br><br><br><br><br>
<?php include("footer.php") ?>
$(document).ready( function(){
var welctop = $("#welcome").offset().top;
var welcbottom = welctop + $("#welcome").height();
$(window).scroll(function(){
var top = $(window).scrollTop();
var bottom = top + $(window).height();
if(top > welcbottom || $(window).width() < 767){
$("#navbar").prop('class', 'navbar navbar-default navbar-fixed-top');
}
else{
$("#navbar").prop('class', 'navbar navbar-default');
}
});
});
</script>
<script>
function goToByScroll(id){
// Scroll
$('html,body').animate({
scrollTop: $("#"+id).offset().top},
'slow');
// Scroll
}
</script>
<script>
var width = $(window).width();
var hoverover;
$(document).ready( function(){
navbarCollapseCheck();
$(".hover-active-dropdown").hover(
function() { $(this).attr("class", "dropdown hover-active-dropdown active")},
function() { $(this).attr("class", "dropdown hover-active-dropdown")}
);
$(".hover-active").hover(
function() { $(this).attr("class", "hover-active active")},
function() { $(this).attr("class", "hover-active")}
);
});
function navbarCollapseCheck(){
var width = $(window).width();
if(width < 767){
$(".dropdown-toggle").attr("data-toggle", "dropdown");
$("#navbar").prop('class', 'navbar navbar-default navbar-fixed-top');
}
else{
$(".dropdown-toggle").attr("data-toggle", " ");
$("#navbar").prop('class', 'navbar navbar-default');
}
}
$(window).on('resize', function() {
navbarCollapseCheck();
});
</script>
</body></html>