Sample Web Page Form


First Name:
E-Mail Address:


The form above is a copy of the test drive form that we use on our 123response.com main page. The html code below is what creates the above form and was generated by the "Get Sign-up Form Code" function that is located on your main menu page. We made a couple of changes to the coding to resize it, format and add color. If you want to adjust the code that you create for your autoresponder form, just compare the two sets of code and make some test changes to get it where you want.

There are certain code lines that you should not change. Any of the items below that are in red should not be changed since the form will not work properly if they are. There is one value (000) in green below which has to remain the same as it is when you generate the code. When you generate your code it will have a number in it instead of the "000", which is your autoresponder ID number. So make sure that that value is not changed when you are working with the form changes.

You can change the values on the other lines, i.e., table widths and table data widths, the border size, bgcolor, cellpadding and change or take out the bordercolor. If you are having a problem or not sure how to change it, email us at support and we will see if we can help.

<center>
<form method="post" action="http://www.123response.com/ar/subc.php">
<table width="300" border="4" bgcolor="#99FFCC" bordercolor="#009900" cellpadding="2">
<INPUT TYPE="HIDDEN" name="aid" value="000">
<tr><td width="45%" align="right">First Name:</td>
<td width="65%" align="left">
<input type="text" name="lfname"><br>
</td></tr>
<tr><td width="45%" align="right">E-Mail Address:</td>
<td width="65%" align="left">
<input type="text" name="lemail">
</td></tr>
<tr><td width="45%" align="right">
<center><input type="submit" name="submit" value="Submit">
</td>
<td width="65%" align="center">
<input type="reset" name="reset" value="Reset">
</center></td></tr>
</table>
</form>
</center>