Form Errors

https://www.jensenmovingandstorage.com/

Both the FREE QUOTE forms on my website home page are giving the following error

Please help me

form%20error

These forms are giving errors

What is the programming language behind the forms?

Yup a little hard to diagnose without seeing what is under the hood…

Here is the coding of the forms Pop up window Form FREE Quote


      <div class="fixed-quote-form inactive hidden-xs">
        <button id="toggle_sideqoute" class="btn btn-style-7 hidden-xs">FREE QUOTE</button>
        <div class="container-1">
          <div class="row-1">
            <div class="col-sm-12">
              <h3 class="section-title">Request a Moving Quote.<br />FREE. FAIR. HONEST.</h3>
              {% macro errorList(errors) %}
				    {% if errors %}
				        <ul class="errors">
				            {% for error in errors %}
				                <li>{{ error }}</li>
				            {% endfor %}
				        </ul>
				    {% endif %}
				{% endmacro %}
				
				{% from _self import errorList %}
				
				<form method="post" action="" accept-charset="UTF-8" class="form-style2 fx-cols-2">
				    {{ getCsrfInput() }}
				    <input type="hidden" name="action" value="contactForm/sendMessage">
				    <input type="hidden" name="redirect" value="contact-us/thanks?from={fromName}">
					<div class="form-column">
				    <input id="fromName" type="text" name="fromName" value="{% if message is defined %}{{ message.fromName }}{% endif %}" placeholder="Your Name">
				    {{ message is defined and message ? errorList(message.getErrors('fromName')) }}
					</div>
					<div class="form-column">
				    <input id="fromEmail" type="email" name="fromEmail" value="{% if message is defined %}{{ message.fromEmail }}{% endif %}" placeholder="Email">
				    {{ message is defined and message ? errorList(message.getErrors('fromEmail')) }}
					</div>
					<div class="form-column-full hidden">
				    <input id="subject" type="text" name="subject" value="New Quote Request from Homepage" placeholder="subject">
				    {{ message is defined and message ? errorList(message.getErrors('subject')) }}
					</div>
					<div class="form-column">
				    <input id="loadingPlace" type="text" name="message[loadingPlace]" value="{% if message is defined %}{{ message.loadingPlace }}{% endif %}" placeholder="Loading Place">
				    {{ message is defined and message ? errorList(message.getErrors('loadingPlace')) }}
					</div>
					<div class="form-column">
				    <input id="unloadingPlace" type="text" name="message[unloadingPlace]" value="{% if message is defined %}{{ message.unloadingPlace }}{% endif %}" placeholder="Unloading Place">
				    {{ message is defined and message ? errorList(message.getErrors('unloadingPlace')) }}
					</div>
					<div class="form-column-full">
				    <input id="phone" type="text" name="message[phone]" value="{% if message is defined %}{{ message.phone }}{% endif %}" placeholder="Phone">
				    {{ message is defined and message ? errorList(message.getErrors('phone')) }}
					</div>
					<div class="form-column-full">
				    <textarea rows="5" cols="40" id="message" name="message[body]">{% if message is defined %}{{ message.message }}{% endif %}</textarea>
				    {{ message is defined and message ? errorList(message.getErrors('message')) }}
					</div>
					<div class="form-column-full">
					<input id="skynethighjack" name="skynethighjack" type="text">
				    <button class="btn btn-style-7" type="submit" value="Send">Submit Your Quote</button>
					</div>
					<div class="form-column-full">
						<h6>Do you need additional moving supplies?</h6>
					</div>
					<div class="form-column">
						<label><input type="checkbox" name="message[Services][]" value="need-additional-supplies"> Yes</label>
					</div>
					<div class="form-column">
						<label><input type="checkbox" name="message[Services][]" value="no-supplies-needed"> No, thanks</label>
					</div>
				</form>
					<!-- SharpSpring fixed_qote -->
							<script type="text/javascript">
    var __ss_noform = __ss_noform || [];
    __ss_noform.push(['baseURI', 'https://app-3QNGGFFSD6.marketingautomation.services/webforms/receivePostback/MzawMDE3NDIxBwA/']);
    __ss_noform.push(['endpoint', 'b7d0506a-db27-47d2-891c-4483237fc502']);
</script>
<script type="text/javascript" src="https://koi-3QNGGFFSD6.marketingautomation.services/client/noform.js?ver=1.24" ></script>

							<!-- END -->		

            </div>
          </div>

        </div>

      </div>
      <!--/ page-section -->

With a blank action the form will be processed on the same page. So there must be some server-side scripting to do that not seen in that template.

I think it may be PHP with this other topic about the same form originally posted in the PHP forum.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.