I am creating a new website for a non-profit organization, and would like to have a donation form in which the donor can enter the amount they would like to give, and then have that value carried over to PayPal.
Here is the website.
If you click on "give online", a modal appears with the Donation form.
Here is the form's code: (It is taken from the website's contact form in order to keep all forms visually similar.)
<!-- form -->
<form id="contactForm" action="#" method="post">
<fieldset>
<p><label for="amount">Enter the amount you wish to donate.</label>
<input name="amount" id="amount" type="text" value="" class="form-poshytip" title="USD"></p>
<p><input type="button" value="Continue"></p>
</fieldset>
</form>
<!-- ENDS form -->
The continue button does not do anything, yet. It would like it to direct the donor to the PayPal page where the amount they just entered in the donation form would be present.
Code that directs the donor to PayPal is missing, mainly because I am not very advanced-code savvy. Help is very much appreciated.