Ah! At least one mystery has been solved (regarding my domain name). Thank you thesacredpath (I love your name!).
I went to a site that iContact recommended to convert their automatic signup java code to html and was given this code, but it still doesn't work: (I know VERY little about coding...) Any ideas will be much appreciated! Thank you! Sheen
<style type="text/css">
.link,
.link a,
.signupframe
{
color: #0e4ceb;
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
}
.link,
.link a {
text-decoration: none;
}
.signupframe {
border: 1px solid #000000;
background: #ffffff;
}
.signupframe .required {
font-size: 10px;
}
</style>
<form method="post" class="iContactForm" action="http://app.icontact.com/icp/signup.php" name="icpsignup" id="icpsignup6837" accept-charset="UTF-8" onsubmit="return verifyRequired6837();" >
<div><input type="hidden" name="redirect" value="http://www.icontact.com/www/signup/thanks.html" />
<input type="hidden" name="errorredirect" value="http://www.icontact.com/www/signup/error.html" />
<div class="SignUp">
<table width="260" class="signupframe" border="0" cellspacing="0" cellpadding="5">
<tr>
<td valign="top" align="right">
<span class="required">*</span> Email
</td>
<td align="left">
<input type="text" size="10" name="fields_email" />
</td>
</tr>
<tr>
<td valign="top" align="right">
<span class="required">*</span> First Name
</td>
<td align="left">
<input type="text" size="10" name="fields_fname" />
</td>
</tr>
<tr>
<td valign="top" align="right">
<span class="required">*</span> Last Name
</td>
<td align="left">
<input type="text" size="10" name="fields_lname" />
</td>
</tr>
<input type="hidden" name="listid" value="45211" />
<input type="hidden" name="specialid:45211" value="UAB8" />
<input type="hidden" name="clientid" value="1022688" />
<input type="hidden" name="formid" value="6837" />
<input type="hidden" name="reallistid" value="1" />
<input type="hidden" name="doubleopt" value="0" />
<tr>
<td> </td>
<td><span class="required">*</span> = Required Field</td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="Submit" value="Submit" /></td>
</tr>
</table>
</div>
</form>
</div><script type="text/javascript">
var icpForm6837 = document.getElementById('icpsignup6837');
icpForm6837.action = "https://app.icontact.com/icp/signup.php";
function verifyRequired6837() {
if (icpForm6837["fields_email"].value == "") {
icpForm6837["fields_email"].focus();
alert("The Email field is required.");
return false;
}
if (icpForm6837["fields_fname"].value == "") {
icpForm6837["fields_fname"].focus();
alert("The First Name field is required.");
return false;
}
if (icpForm6837["fields_lname"].value == "") {
icpForm6837["fields_lname"].focus();
alert("The Last Name field is required.");
return false;
}
return true;
}
</script>