If wanted, you can also create your own HTML form, instead of using the withdraw_funds.htmlt template, allowing members to request a funds withdrawal from your account. First, you need a <FORM> tag, which will be:
<form action="index.cgi?~authtext~&action=withdraw_funds" method="POST">
The only required text field is to allow your members to specify the amount, they would like to withdraw, which will be:
<input type="text" name="amount">
Last, you simply need a submit button, such as:
<input type="submit" value="Withdraw Funds">