I’ve created a new weblog and template set and i’m setting up a collective entry weblog form on a webpage. The form asks for some basic information and I removed the captcha from the form. When I test the form and click on submit I get an error message saying that I left some form fields blank, even though I filled them all in. I have captchas disabled on the site and I’m not sure what’s wrong. Here’s the form code:
<h5>Name</h5>
<input type="text" name="name" class="input" size="30" maxlength="60" value="%%my_name%%" />
<h5>Title</h5>
<input type="text" name="title" class="input" size="30" maxlength="60" value="%%title%%" />
<h5>Address</h5>
<textarea name="location" class="input" cols="30" rows="3">%%my_location%%</textarea>
<h5>Email</h5>
<input type="text" name="email" class="input" size="30" maxlength="60" value="%%my_email%%" />
<h5>Phone</h5>
<input type="text" name="custom2" class="input" size="30" maxlength="20" value="%%custom2%%" />
<h5>How did you hear about us? </h5>
<input type="text" name="custom1" class="input" size="30" maxlength="60" value="%%custom1%%" />
<br />
<br />
<input type="submit" name="submit" class="button" value=” SUBMIT “ />
Any ideas?
