Forum

Thread tagged as: Forms

Form admin not showing details, but form submits

My form details don't show in admin area, here is the image https://pasteboard.co/gQ4zUGHrn.png

But when I click on date and time, I see the data user had filled. here is the image https://pasteboard.co/gQ4Y3FuU6.png

Here is my form code:

<perch:form id="footer_contact" method="post" app="perch_forms">
                            <div class="row">
                                <div class="col-md-12">
                                    <div class="form-group">
                                        <perch:input type="text" id="name" required="true" class="form-control input-lg" placeholder="Name*">
        <perch:error for="name" type="required">Please add your name</perch:error>

                                    </div>
                                    <div class="form-group">
                                        <perch:input type="email" id="email" required="true" class="form-control input-lg" placeholder="Email Address*">
        <perch:error for="email" type="required">Please add your email address</perch:error>
        <perch:error for="email" type="format">Please check your email address</perch:error>

                                    </div>
                                    <div class="form-group">
                                        <perch:input type="text" id="phone" class="form-control input-lg" placeholder="Phone">
                                    </div>
                                    <div class="form-group">
                                        <perch:input type="textarea" cols="6" rows="8" id="comments" class="form-control input-lg" placeholder="How may we help you?"></textarea>
                                    </div>
                                    <div class="form-group">
                                    <perch:input type="text" id="banana" style="display:none" antispam="honeypot" />

                                    <perch:input id="submit" type="submit" class="btn btn-primary btn-lg pull-right" value="Submit now!">
                                    </div>
                                </div>
                            </div>
                    <perch:success>
                        <div class="box">
                            <p>Thank you!! your form is successfully submitted.</p>
                        </div>
                    </perch:success>
            </perch:form>
sawan ruparel

sawan ruparel 0 points

  • 4 years ago
Simon Clay

Simon Clay 127 points

Does it help of you add labels to the items e.g. label="Email"?

<perch:input type="email" id="email" required="true" class="form-control input-lg" placeholder="Email Address*" label="Email" >

Yes, that was helpful. Thanks Simon

Simon Clay

Simon Clay 127 points

Great :)