forked from paladin-t/my_basic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdonate.html
120 lines (113 loc) · 5.15 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
<!DOCTYPE html>
<!--
COPYRIGHT 2011 - 2019 WANG RENXIN. ALL RIGHTS REESERVED.
LIST OF DONORS.
-->
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Donate to MY-BASIC</title>
<style type="text/css">
body {
margin: 0; padding: 0;
background-color: #789;
font: 14px Helvetica, Arial, sans-serif;
}
div.content {
width: 600px; margin: 2em auto; padding: 20px 50px;
border-radius: 1em;
background-color: #fff;
}
a:link, a:visited { color: #69c; text-decoration: none; }
@media (max-width: 700px) {
body { background-color: #fff; }
div.content {
width: auto; margin: 0 auto; padding: 1em;
border-radius: 0;
}
}
</style>
</head>
<body>
<div class="content">
<p>
<a href="https://github.com/paladin-t/my_basic">BACK TO MY-BASIC</a>
</p>
<h1>Donate to MY-BASIC</h1>
<h2>List of Donors</h2>
<p>
Here is the list of some of the people who have kindly sent donation for MY-BASIC development.
I greatly appreciate all the donation that has been made.
</p>
<p>
<ul type="none">
<li>Ken Seergobin</li>
<li>Francesco De Simone</li>
<li>Nicola Giacobbe</li>
<li>Devulder Jean-Paul</li>
<li>Alvin Schmitt</li>
</ul>
</p>
<p>
The list is ordered by most recent.
</p>
<p>
Please <a href="mailto:[email protected]">send</a> me a message if you think your name should be listed here, or do not want your name to be listed.
</p>
<hr />
<h2>Donate</h2>
<p>
Thank you for choosing MY-BASIC. Your support is my motivation to make MY-BASIC better.
It's totally free to use code/binary/document in the MY-BASIC repository for both commercial and noncommercial purpose under the MIT license.
However, you can support MY-BASIC development with a donation.
</p>
<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="M9S3PACSX8RLW">
<table>
<tr><td><input type="hidden" name="on0" value="Donate with">Donate with</td></tr><tr><td><select name="os0">
<option value="a)">a) $ 0.99 USD</option>
<option value="b)">b) $ 1.99 USD</option>
<option value="c)">c) $ 4.99 USD</option>
<option value="d)">d) $ 9.99 USD</option>
<option value="e)">e) $ 19.99 USD</option>
<option value="f)">f) $ 49.99 USD</option>
<option value="g)">g) $ 99.99 USD</option>
</select> </td></tr>
</table>
<input type="hidden" name="currency_code" value="USD">
<input type="image" src="https://www.paypalobjects.com/en_GB/i/btn/btn_paynowCC_LG.gif" border="0" name="submit" alt="PayPal – The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/zh_XC/i/scr/pixel.gif" width="1" height="1">
</form>
<hr />
<h2>Questions</h2>
<h3>
Q: Why it's a "Pay Now" instead of "Donate" button?
</h3>
<p>
A: "Donate" button is no longer usable with an account from my region, according to PayPal's latest policy.
The only option PayPal offered for me is to use this "Pay Now" instead.
Don't worry, it's similar and secure.
</p>
<h3>
Q: Do I have to sign up before making donation?
</h3>
<p>
A: No signing up is required to donate with PayPal.
PayPal accepts direct transaction with common credit cards and debit cards.
</p>
<h3>
Q: How should I choose a different amount?
</h3>
<p>
A: PayPal's "Pay Now" doesn't support customized price by you.
You may choose a base donation number and change the quantity for an approximate expected amount, if it's not on the payment option list.
</p>
<p>
<a href="https://github.com/paladin-t/my_basic">BACK TO MY-BASIC</a>
</p>
</div>
<p align="center">Copyright (C) 2011 - 2019 Wang Renxin. All rights reserved.</p>
</body>
</html>