I have a webpage in which I would like to integrate a recurring donation.
I have the following HTML code, which allows a user to insert any amount, and click donate to submit that sum.
What I would like is a thick box that once pressed, will make that amount recurring. As a mention, I have a business account on paypal.
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_donations">
<input type="hidden" name="business" value="email@domain-x.com">
<input type="hidden" name="lc" value="US">
<input type="hidden" name="item_name" value="Widget Fund">
<input type="hidden" name="item_number" value="W-001">
<input type="hidden" name="no_note" value="0">
<input type="hidden" name="cn" value="Add special instructions to the seller:">
<input type="hidden" name="no_shipping" value="2">
<input type="hidden" name="currency_code" value="USD">
<!-- --><br />
Please enter your donation amount: (Example - 10.00)<br />
<input type="text" name="amount" size="5"><br />
<input type="hidden" name="bn" value="PP-DonationsBF:btn_donateCC_LG.gif:NonHosted"><br />
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"><br />
<img alt="" border="0" src="https://www.paypalobjects.com/en_GB/i/scr/pixel.gif" width="1" height="1"><br />
</form>