I recently set up a new form with an email address field and have set Enable Validation to yes, and on line 7 I have put "email" without quotes for the textfield to check but it still sends out the form when I put in normal text.
Here is my HTML code:
Here is my HTML code:
<div id="contactform">
<table
style="text-align: left; width: 500px; height: 233px;"
border="0" cellpadding="2" cellspacing="2">
<tbody>
<tr>
<td>Your Name:</td>
<td><input
maxlength="100" name="name" class="contacttextbox"></td>
</tr>
<tr>
<td>Email Address:</td>
<td><input
maxlength="100" name="email" class="contacttextbox"></td>
</tr>
<tr>
<td>Subject:</td>
<td><input
maxlength="100" name="subject" class="contacttextbox"></td>
</tr>
<tr>
<td>Message:</td>
<td><textarea
cols="40" rows="5" name="message"
class="contacttextarea"></textarea></td>
</tr>
<tr>
<td> </td>
<td><br /><button
value="Send" name="Send" type="submit" class="btn">Send</button><button
value="Clear" name="Clear" type="reset"
class="btn">Clear</button></td>
</tr>
<tr>
<td></td>
<td><br />For verification please
enter the text<br /> you see in the image below:<br /><br />
{imageverification}
</td>
</tr>
</tbody>
</table>
</div>
Hi aquariandesign,
The first problem is that your <input . . > tags are missing the required type='text' attribute. I'm not sure if this is causing the validation problem but it might be. Please correct the html then post a link to the form if it still isn't working.
Bob
The first problem is that your <input . . > tags are missing the required type='text' attribute. I'm not sure if this is causing the validation problem but it might be. Please correct the html then post a link to the form if it still isn't working.
Bob
Thank you, that did it. I knew I was missing some small detail...much appreciated!
This topic is locked and no more replies can be posted.