+added a donate html page;

*updated readme.
This commit is contained in:
Wang Renxin 2016-12-19 20:40:26 +08:00
parent ebf8023b2c
commit 83bbad10e1
2 changed files with 106 additions and 5 deletions

View File

@ -25,7 +25,7 @@ Why are other script interpreters so complex? Why is it so difficult to integrat
* [Installation](#installation)
* [Wiki](#wiki)
* [References](#references)
* [Support the MY-BASIC project](#support-the-my-basic-project)
* [Support MY-BASIC development/List of donors](#support-my-basic-developmentlist-of-donors)
## Introduction
@ -177,8 +177,6 @@ The [MY-BASIC Quick Reference](MY-BASIC%20Quick%20Reference.pdf) includes most o
* [Prototype-based programming - Wikipedia](https://en.wikipedia.org/wiki/Prototype-based_programming)
* [Lambda abstraction - Wikipedia](https://en.wikipedia.org/wiki/Anonymous_function)
## Support the MY-BASIC project
## Support MY-BASIC development/List of donors
You can support MY-BASIC development with a donation (no registration is required to donate with PayPal):
<br>
[![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=hellotony521%40gmail%2ecom&lc=US&item_name=my-basic&no_note=0&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHostedGuest)
You can support MY-BASIC development with a [donation](https://github.com/paladin-t/my_basic/blob/master/donate.html).

103
donate.html Normal file
View File

@ -0,0 +1,103 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Donate MY-BASIC</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style type="text/css">
body {
background-color: #789; margin: 0;
padding: 0; font: 14px Helvetica, Arial, sans-serif;
}
div.content {
width: 600px; margin: 2em auto; padding: 20px 50px;
background-color: #fff; border-radius: 1em;
}
a:link, a:visited { color: #69c; text-decoration: none; }
@media (max-width: 700px) {
body { background-color: #fff; }
div.content {
width: auto; margin: 0 auto; border-radius: 0;
padding: 1em;
}
}
</style>
</head>
<body>
<div class="content">
<p>
<a href="https://github.com/paladin-t/my_basic">BACK</a>
</p>
<h1>Donate 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>
-
</p>
<h2>Notice</h2>
<p>
Thank you for choosing MY-BASIC. Your support is my motivation to make MY-BASIC better.
It's totally free to use things 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>
<p>
Please <a href="mailto:hellotony521@qq.com">send</a> me a message if you think your name should be listed here, or do not want your name to be listed.
I just made this page at the end of 2016, but unfortunately PayPal doesn't reserve transaction records forever.
</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>
<h2>Questions</h2>
<h3>
Q: Why it's "Pay Now" instead of "Donate" button?
</h3>
<p>
A: Due to PayPal's policy, "Donate" button is no longer usable with an account from my region.
The only option PayPal offered for me is to use this "Pay Now".
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 most credit cards and debit cards.
</p>
<h3>
Q: How should I choose a different number?
</h3>
<p>
A: PayPal's "Pay Now" doesn't support customized price by you.
You could choose a base donation and change the quantity for an approximate expected number if it's not on the option list.
</p>
<p>
<a href="https://github.com/paladin-t/my_basic">BACK</a>
</p>
</div>
</body>
</html>