Demo5 - Using the Form Wizard     |     home
Example: REQUEST form   |   Example: Modified REQUEST form   |   Example: COMMENT form   |   Example: Modified COMMENT form

Example: Modified COMMENT form

Here I wanted to doctor up the COMMENT form to suit my needs.  
Compare it to the original COMMENT form!

Modified form:

Name:
Email:
Comments:

Original source code:

<form action="http://formmail.trellix.com/servlets/TlxMailer" method="POST" enctype="application/x-www-form-urlencoded">
<input type="hidden" name="tlx_SortOrder" value="Name,Email,Comments">
<input type="hidden" name="tlx_FormIndex" value="1">
<input type="hidden" name="tlx_OKMessage" value="Thank you for your comments on my web site.">
<input type="hidden" name="tlx_SendMode" value="1">
<input type="hidden" name="tlx_Subject" value="A comment form was submitted">
<input type="hidden" name="tlx_EmailTo" value="kweilbac@gte.net">
<table cellpadding="0" cellspacing="1" border="0" align="center">
<tr><td align="left">Name:<br>
<input type="text" name="Name" size="30" maxlength="100"></td></tr>
<tr><td align="left">Email:<br>
<input type="text" name="Email" size="30" maxlength="100"></td></tr>
<tr><td align="left">Comments:<br>
<textarea name="Comments" rows="5" cols="30"></textarea></td></tr>
<tr><td align="right"><input type="reset">    <input type="submit" value="Send" name="tlx_send"></td>
</tr></table></form>

Revised code:
<form action="http://formmail.trellix.com/servlets/TlxMailer" method="POST" enctype="application/x-www-form-urlencoded">
<input type="hidden" name="tlx_SortOrder" value="Name,Email,Comments">
<input type="hidden" name="tlx_FormIndex" value="1">
<input type="hidden" name="tlx_OKMessage" value="Thank you for your comments on my web site.">
<input type="hidden" name="tlx_SendMode" value="1">
<input type="hidden" name="tlx_Subject" value="A comment form was submitted">
<input type="hidden" name="tlx_EmailTo" value="kweilbac@gte.net">
<table cellpadding="0" cellspacing="1" border="0" align="center">
<tr><td align="left"><font size="5" color="blue" face="Times-New-Roman">Name:</font><br>
<input type="text" name="Name" size="30" maxlength="100"></td></tr>
<tr><td align="left"><font size="4" color="red">Email:</font><br>
<input type="text" name="Email" size="30" maxlength="100" style="color: blue; font-size: 20pt; font-weight: bold;"></td></tr>
<tr><td align="left"><font size="5" color="green" face="sans-serif">Comments:</font><br>
<textarea name="Comments" rows="5" cols="30"></textarea></td></tr>
<tr><td align="right"><input type="reset">    <input type="submit" value="Send" name="tlx_send"></td>
</tr></table></form>