Build your own custom input form for your website without using iframes. For simplicity, we are documenting one method of doing this knowing there are other techniques that will accomplish the same outcome.
Custom forms are not supported by Trail Blazer. All custom forms are the sole responsibility of the author.
<script type="text/javascript">
if (document.formName1.firstname.value == "")
alert ("First name needs to be filled out");
if (document.formName1.lastname.value == "")
alert ("Last name needs to be filled out");
if (document.formName1.email.value == "")
alert ("Email needs to be filled out");
if (document.formName1.zipcode.value == "")
alert ("Zip Code needs to be filled out");
<form action="http://www.trailblz.info/CUSTOMERDBNAME/signup_post.aspx" method="get" name="formName1" onsubmit="return validateform()">
<div><label>First Name<input maxlength="50" name="firstname" type="text" /></label></div>
<div><label>Last Name<input maxlength="50" name="lastname" type="text" /></label></div>
<div><label>Email Address<input maxlength="200" name="email" type="text" /></label></div>
<div><label>Zip Code <input maxlength="200" name="zipcode" type="text" /></label></div>
<div><label>Areas of Interest (choose all that apply): </label></div>
<div><label><input name="attribute" type="checkbox" value="10391" /> I will attend the banquet</label></div>
<div><label><input name="attribute" type="checkbox" value="10392" /> I would like to be a table captain</label></div>
<div><label><input name="attribute" type="checkbox" value="10393" /> Email me more information</label></div>
<div><label><input name="attribute" type="radio" value="10395" /> Food choice - chicken</label></div>
<div><label><input name="attribute" type="radio" value="10396" /> Food choice - vegetarian</label></div>
<input name="rd" type="hidden" value="http://www.YOURWEBSITE.com/redirectpage-thankyou.html" />
<!-- Value is the text that will show on the submit button -->
<input type="submit" value="Submit Form" />