8 | | {{{ |
9 | | #!html |
10 | | |
11 | | <form id="donation_form" action="https://www.paypal.com/cgi-bin/webscr" method="post" onsubmit="return form_valid()"> |
12 | | <input type="hidden" name="cmd" value="_donations"> |
13 | | <input type="hidden" name="business" value="omry@yadan.net"> |
14 | | <input type="hidden" name="item_name" value="FireStats donation"> |
15 | | <input type="hidden" name="no_shipping" value="1"> |
16 | | <input type="hidden" name="return" value="http://firestats.cc/wiki/ThankYouForYourSupport"> |
17 | | <input type="hidden" name="currency_code" value="USD"> |
18 | | <input type="hidden" name="tax" value="0"> |
19 | | <input type="hidden" id ="amount" name="amount" value=""> |
20 | | <input type="hidden" name="bn" value="PP-DonationsBF"> |
21 | | |
22 | | <table> |
23 | | <tr> |
24 | | <td> |
25 | | <select id="value_selection" onchange="update()"> |
26 | | <option value="5">5$</option> |
27 | | <option selected="selected" value="10">10$</option> |
28 | | <option value="20">20$</option> |
29 | | <option value="30">30$</option> |
30 | | <option value="50">50$</option> |
31 | | <option value="other">Custom</option> |
32 | | </select> |
33 | | </td> |
34 | | <td> |
35 | | <input onfocus="this.select()" |
36 | | id="custom_value" |
37 | | type="text" |
38 | | value="Enter an amount" |
39 | | style="display: none" |
40 | | onblur="updateAmount();"/> |
41 | | </td> |
42 | | </tr> |
43 | | <tr> |
44 | | <td colspan="2"> |
45 | | <input |
46 | | type="image" |
47 | | src="https://www.paypal.com/en_US/i/btn/x-click-but21.gif" |
48 | | border="0" |
49 | | name="submit" |
50 | | alt="Make payments with PayPal - it's fast, free and secure!" |
51 | | > |
52 | | <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"> |
53 | | </td> |
54 | | </tr> |
55 | | </table> |
56 | | </form> |
57 | | }}} |
58 | | |
| 8 | [[DonationBox]] |