Can anyone tell me what I’m doing wrong with this basic comment form? What happens when the page is viewed is that the Name input field actually shows the name tag as a text string {name}, and the same is true for the Comment text area (it contains the literal string {comment}), while the email field is populated with the system default email address. And on top of all that, the form doesn’t actually send anything to the database.
<fieldset>
{exp:comment:form}<legend>Comment Form</legend>
<label for="Name">Name*</label>
<input name="Name" type="text" class="formtxt" id="Name" value="{name}"/></p>
<label for="Email">Email*</label>
<input name="Email" type="text" class="formtxt" id="Email" value="{email}" /></p>
<label for="textarea">Comment</label>
<textarea name="comment" id="comment" cols="45" rows="5">{comment}</textarea></p>
<label for="Submit">Submit</label>
<input name="Submit" type="submit" class="formbtn" id="Submit" value="Submit" /></p>
</exp:comment:form} </fieldset>[Mod Edit: Moved to the Technical Support forum]