Mercurial > hg-website
changeset 472:ef6da0fd2a0c
donate: new page to route donations to conservancy
This isn't linked to yet because I want to confirm with conservancy
that this is still the right way to link to them for PayPal donations,
because it's surprising to me that the linked page doesn't mention a
project name or have a memo field.
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Fri, 23 Dec 2016 11:06:02 -0500 |
parents | d910d5ce9b0b |
children | f8cee73d5cf0 |
files | templates/donate/index.html |
diffstat | 1 files changed, 62 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/donate/index.html Fri Dec 23 11:06:02 2016 -0500 @@ -0,0 +1,62 @@ +{% extends "base.html" %} + +{% block main %} + +<!-- TODO(durin42): move this js someplace better --> +<script type="text/javascript"> +function validateAmount(amount){ + if(amount.value.match( /^[0-9]+(\.([0-9]+))?$/)){ + return true; + }else{ + alert('You must enter a valid donation.'); + amount.focus(); + return false; + } +} +</script> + +<h1>Project Donations</h1> + +<p>Mercurial is a volunteer-run free-software project that is a + member of + the <a href='http://www.sfconservancy.org/'>Software + Freedom Conservancy</a>, a US tax-exempt 501(c)(3) organization. + Donations are tax-deductable. + +<h2>General donations</h2> +<p>Donations to the general fund will be used to sponsor project +activities such as sprints and conference attendance:</p> + +<table border=1> +<td><b>PayPal</b></td> +<td><b>Check</b></td> +<td><b>Wire Transfer</b></td></tr> +<tr> +<td> +<form action="https://www.paypal.com/cgi-bin/webscr" method="post"> +<input type="hidden" name="cmd" value="_s-xclick"> +<input type="hidden" name="hosted_button_id" value="1578269"> +<input type="image" + src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" + border="0" name="submit" alt=""> +<img alt="" border="0" + src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" + height="1"> +</form> +</td> +<td> +<b>Software Freedom Conservancy, Inc.</b><br> +137 Montague Street STE 380<br> +Brooklyn, NY 11201-3548<br> +<i>memo: Directed donation: Mercurial</i> +</p> +</td> +<td> +Please write + to <a href='mailto:accounting@sfconservancy.org'>accounting@sfconservancy.org</a> + for details.</p> +</td> +</tr> +</table> + +{% endblock %}