Hi,
I am having trouble with integrating the code that saleforce produced for me for a web to lead form into my website. When I put the code into the 'Text' tab for the page and then go to the 'Visual' tab for the page it all looks fine - but as soon as I press the page preview or update button, it changes. The boxes where the customer would input their information disappear and so does the submit button. Has anyone had a similar problem?
This is the code I am putting on the page:
<form action="https://www.salesforce.com/servlet/servlet.WebToLead?encoding=UTF-8" method="POST">
<input type=hidden name="oid" value="00Db0000000a7Ix">
<input type=hidden name="retURL" value="http://sbc.luminousinc.com/thanks/">
<input type=hidden id="Daddy_Analytics_Token" name="00Nb0000004eEgd">
<input type=hidden id="Daddy_Analytics_WebForm_URL" name="00Nb0000004eEgj">
<label for="first_name">First Name</label><input id="first_name" maxlength="40" name="first_name" size="20" type="text" />
<label for="last_name">Last Name</label><input id="last_name" maxlength="80" name="last_name" size="20" type="text" />
<label for="email">Email</label><input id="email" maxlength="80" name="email" size="20" type="text" />
<label for="company">Company</label><input id="company" maxlength="40" name="company" size="20" type="text" />
<label for="city">City</label><input id="city" maxlength="40" name="city" size="20" type="text" />
<label for="state">State/Province</label><input id="state" maxlength="20" name="state" size="20" type="text" />
<input type="submit" name="submit">
</form>
Thanks in advance for your help :)