Forum
Forms App Not Submitting Forms
Hi, I've read all the docs, triple checked my code, and added the app to the apps.php but I still cannot get a form to submit and show up on the dashboard. Any help? Thanks!
<perch:if exists="form-heading">
<h1><perch:content order="1" divider-before="Form Options" label="Form Title" id="form-heading" type="text"/></h1>
</perch:if>
<perch:if exists="form-description">
<h1><perch:content order="2" label="Form Description" id="form-description" type="textarea"/></h1>
</perch:if>
<perch:form id="form-creator" method="post" app="perch_forms" role="form">
<div class="input">
<perch:label for="name">Name</perch:label><br>
<perch:input for="name" type="text" required="true" label="Name"/>
<perch:error for="name" type="required">Please add your name</perch:error>
</div>
<perch:input type="submit" id="submit" value="Submit" />
<perch:success>
<div class="alert success">
<perch:content order="3" id="success" type="textarea" label="Confirmation Message" help="This appears when user successfully submits your form"/>
</div>
</perch:success>
</perch:form>
Please can we see your Diagnostics Report?
What happens when you submit the form? Do you see your success message?
No, I'm not getting a success message which clued me that there was a problem somewhere in what I'm doing. Here's my diagnostics report:
If you add debug to your page and submit the form, what does it output?
https://docs.grabaperch.com/docs/installing-perch/configuration/debug/
Hi Drew, This is what my form outputs after submission, which didn't change at all from before submission.
This is what it says on my dashboard:
This:
should be:
Arrrggghh! Should have seen this. THANKYOU!!!