blob: b7962d19b30c8061176823e54dd565b0ce2044f0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<h1>Donation</h1>
<?php
if (!empty($_GET) && isset($_GET['success'])) {
printf("Thanks for supporting my work! Please continue to enjoy using my site and software.");
exit();
}
?>
<p>
If you like what I do, you're welcome to donate.
</p>
<h2><a href="https://buy.stripe.com/cN24gB4nD3En3Li288">Click to Donate Once</a></h2>
<h2><a href="https://buy.stripe.com/dR6eVfg6l2Aj2He6op">Click to Donate Monthly</a></h2>
<?php
exit();
|