blob: d3688444bbe8ed0eeff55c6fe8d53515475b361b (
plain) (
tree)
|
|
<h1>Donations</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>
Find exactly the snippet of code you were looking for here? Couldn't wrap your head around a concept until I explained it my way? Just enjoy reading my site?
</p>
<p>
If you like what I do, you're welcome to donate.
</p>
<h2>Stripe</h2>
<p>
I am charged a <a href="https://stripe.com/pricing">2.9%+30c fee per transaction</a>. Click below for
</p>
<p class="centered">
<a class="donation" href="https://buy.stripe.com/cN24gB4nD3En3Li288">A single gift</a>
or
<a class="donation" href="https://buy.stripe.com/dR6eVfg6l2Aj2He6op">Recurring gifts</a>
</p>
<h2>Monero Cryptocurrency</h2>
<p>
I accept Monero at the following address. Click to view the plain address.
<a href="/assets/monero.txt"><img title="<?php include('assets/monero.txt') ?>" alt="my Monero address, made with qrencode(1)" src="/assets/monero.svg"></a>
</p>
<?php
exit();
|