-
Notifications
You must be signed in to change notification settings - Fork 0
/
donate.html
152 lines (149 loc) · 5.29 KB
/
donate.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
<!-- This HTML preset file was created by: Khian Victory D. Calderon -->
<!DOCTYPE html>
<html>
<head>
<!-- Prevent browswer from storing local copy to always fetch up to date files -->
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="pragma" content="no-cache" />
<!-- for mobile display -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="donate.png">
<title>Khian's Donation Page</title>
<style>
body {
background: rgb(41, 123, 250);
color: white;
display: flex;
flex-direction: column;
font-family: Roboto, Verdana;
}
#content {
padding: 1%;
flex: 1;
text-align: center;
}
.images {
width: 30%;
height: auto;
border-radius:25px;
box-shadow:0px 0px 25px black;
}
a {
color:chartreuse;
}
.btn {
cursor:pointer;
background:white;
color: rgb(41, 123, 250);
padding: 1%;
text-decoration: none;
border-radius: 35px;
transition: 0.3s;
}
.btn:hover,
.btn:active {
filter: brightness(70%);
}
.t1 {
font-size: 3.5em;
}
.t2 {
font-size: 2.5em;
}
.t3 {
font-size: 1.5em;
}
.t4 {
font-size: 1em;
}
.left {
text-align:left;
}
#choose-method, #GCashOptions, #QRCode, #ExpressSend, #BankTransfer {
display:none;
}
@media (max-width: 768px) {
.images {
width: 90%;
height: auto;
}
.btn {
padding: 3%;
}
}
</style>
<script>
function hide(x) {
document.getElementById(x).style.display = "none";
}
function show(x) {
document.getElementById(x).style.display = "block";
}
</script>
</head>
<body>
<div id="content"><br><br>
<noscript>
<h1>PLEASE ENABLE JAVASCRIPT ON THIS WEBPAGE</h1>
</noscript>
<span class="t1">Thank you for your donation!</span><br><br><br>
<span class="t3">Any amount of donations goes to my personal funds to help me keep motivated doing productive things and is a big help for me. :)</span>
<br><br><br>
<span class="t4">Contact me for more details:</span>
<span class="t4"><a href="mailto:khianpublicmail@gmail.com">khianpublicmail@gmail.com</a></span>
<hr>
<br><br><br>
<span class="t3"><a id="donatebutton" onclick="hide('donatebutton'); show('choose-method')" class="btn">Donate to Khian</a></span>
<div id="choose-method">
<span class="t3">Choose donation method:</span><br><br>
<span class="t3"><a class="btn" onclick="hide('choose-method'); show('GCashOptions')">GCash</a></span>
<br><br><br>
<span class="t3"><a class="btn" href="https://www.paypal.com/paypalme/KhianVictory">Paypal</a></span>
</div>
<div id="GCashOptions">
<span class="t3">How would you like to send in GCash?</span><br><br>
<span class="t3"><a class="btn" onclick="hide('GCashOptions'); show('QRCode')">GCash Scan QR Code</a></span><br><br><br>
<span class="t3"><a class="btn" onclick="hide('GCashOptions'); show('ExpressSend')">GCash to GCash</a></span><br><br><br>
<span class="t3"><a class="btn" onclick="hide('GCashOptions'); show('BankTransfer')">Bank to GCash</a></span><br><br><br>
<span class="t3"><a onclick="hide('GCashOptions'); show('choose-method')" class="btn">Back</a></span>
</div>
<div id="QRCode">
<span class="t2">Scan to QR Code below:</span><br><br>
<img src="GCash.jpg" class="images">
<br><br><br>
<span class="t3"><a onclick="hide('QRCode'); show('GCashOptions')" class="btn">Back</a></span>
</div>
<div id="ExpressSend">
<div class="left">
<span class="t3">Steps:</span>
</div>
<ol class="t3 left">
<li>On your GCash homepage, tap Send</li>
<li>Select Express Send</li>
<li>Type <u>09938715214</u></li>
<li>Enter the amount you want to send</li>
<li>Tap Send</li>
<li>Done</li>
</ol>
<span class="t3"><a onclick="hide('ExpressSend'); show('GCashOptions')" class="btn">Back</a></span>
</div>
<div id="BankTransfer">
<div class="left">
<span class="t3">To send from any bank to GCash, follow the steps below:</span>
</div>
<ol class="t3 left">
<li>On your Bank App, tap transfer money or send money</li>
<li>Select Send to other bank</li>
<li>Select GCash</li>
<li>Type <u>09938715214</u> in Account Number</li>
<li>Enter the amount you want to send</li>
<li>Tap Send or Transfer Money (Additional charge may apply)</li>
<li>Done</li>
</ol>
<span class="t3"><a onclick="hide('BankTransfer'); show('GCashOptions')" class="btn">Back</a></span>
</div>
<br><br><br><br><br>
</div>
</body>
</html>