I am receiving a lead form error. I have check the forum but have been unsuccessful at resolving the problem. Please see the details of the error:
ERROR MEESAGE: We couldn't authenticate web form provider. Please contact web form provider for any additional information.
URL: http://landcareinc.net
Posted HTML to web page:
<META HTTP-EQUIV="Content-type" CONTENT="text/html; charset=UTF-8">
<script src="https://www.methodintegration.com/MethodWebForms/Javascript/formValidation.js" type="text/javascript"></script>
<script type="text/javascript">
function validate_form(thisform){
with (thisform){
if (validate_required("FirstName_Step2","vld_FirstName_Step2","First Name must be filled out!")==false)
{document.getElementById("FirstName_Step2").focus();return false;}
if (validate_required("LastName_Step2","vld_LastName_Step2","Last Name must be filled out!")==false)
{document.getElementById("LastName_Step2").focus();return false;}
if (validate_required("Phone_Step2","vld_Phone_Step2","Phone must be filled out!")==false)
{document.getElementById("Phone_Step2").focus();return false;}
if (validate_required("Email_Step2","vld_Email_Step2","Email must be filled out!")==false)
{document.getElementById("Email_Step2").focus();return false;}
if (validate_maxLength("Description_Step3","vld_Description_Step3","Products / Services: maximum length should be 4000 characters!",4000)==false)
{document.getElementById("Description_Step3").focus();return false;}
document.getElementById('submit_web_form').disabled=true;
}
}
</script>
<form action="https://www.methodintegration.com/method/timezonerouter.aspx?url=https://www.methodintegration.com/MethodWebForms/submit.aspx" onsubmit="return validate_form(this)" method="POST">
<input type="hidden" name="oid" value="lkrBcTwMtiq56woCbMJ8rTGwRwU2m1NfxyCOi2nIsZQ="/>
<input type="hidden" name="retURL" value="http://"/>
<input type="hidden" name="formName" value="Web-To-Lead"/>
<h3>Contact Information</h3>
<h4>Please enter your contact information below.</h4>
<table>
<tr>
<td valign ="top">
<label for="CompanyName_Step2">Company Name</label>
</td>
<td>
<input type="text" id="CompanyName_Step2" name="CompanyName_Step2" maxlength="41" size="20" value="" />
</td>
</tr>
<tr>
<td valign ="top">
<label for="FirstName_Step2">First Name</label>
</td>
<td>
<input type="text" id="FirstName_Step2" name="FirstName_Step2" maxlength="25" size="20" value="" />
<span id="vld_FirstName_Step2" style="color:Red">*</span>
</td>
</tr>
<tr>
<td valign ="top">
<label for="LastName_Step2">Last Name</label>
</td>
<td>
<input type="text" id="LastName_Step2" name="LastName_Step2" maxlength="25" size="20" value="" />
<span id="vld_LastName_Step2" style="color:Red">*</span>
</td>
</tr>
<tr>
<td valign ="top">
<label for="Phone_Step2">Phone</label>
</td>
<td>
<input type="text" id="Phone_Step2" name="Phone_Step2" maxlength="21" size="20" value="" />
<span id="vld_Phone_Step2" style="color:Red">*</span>
</td>
</tr>
<tr>
<td valign ="top">
<label for="Email_Step2">Email</label>
</td>
<td>
<input type="text" id="Email_Step2" name="Email_Step2" maxlength="1023" size="20" value="" />
<span id="vld_Email_Step2" style="color:Red">*</span>
</td>
</tr>
<tr>
<td valign ="top">
<label for="BillAddressAddr3_Step2">Address</label>
</td>
<td>
<input type="text" id="BillAddressAddr3_Step2" name="BillAddressAddr3_Step2" maxlength="41" size="20" value="" />
</td>
</tr>
<tr>
<td valign ="top">
<label for="BillAddressCity_Step2">City</label>
</td>
<td>
<input type="text" id="BillAddressCity_Step2" name="BillAddressCity_Step2" maxlength="31" size="20" value="" />
</td>
</tr>
<tr>
<td valign ="top">
<label for="BillAddressState_Step2">State / Province</label>
</td>
<td>
<input type="text" id="BillAddressState_Step2" name="BillAddressState_Step2" maxlength="21" size="20" value="" />
</td>
</tr>
<tr>
<td valign ="top">
<label for="BillAddressPostalCode_Step2">Postal Code</label>
</td>
<td>
<input type="text" id="BillAddressPostalCode_Step2" name="BillAddressPostalCode_Step2" maxlength="13" size="20" value="" />
</td>
</tr>
<tr>
<td valign ="top">
<label for="BillAddressCountry_Step2">Country</label>
</td>
<td>
<input type="text" id="BillAddressCountry_Step2" name="BillAddressCountry_Step2" maxlength="31" size="20" value="" />
</td>
</tr>
</table>
<h3>Products & Services</h3>
<h4>Please let us know what product(s) or service(s) are you interested in.</h4>
<table>
<tr>
<td valign ="top">
<label for="Description_Step3">Products / Services:</label>
</td>
<td>
<textarea rows="5" id="Description_Step3" name="Description_Step3" ></textarea>
<span id="vld_Description_Step3" style="color:Red"></span>
</td>
</tr>
</table>
<input type="submit" name="submit_web_form" id="submit_web_form" value="Submit" />
</form>