http://www.buyit247.com
There is a form, standard with Actinic that lets users log in (in this instance for Trade pricing).
I have tried to add the same form to another page here...
http://www.buyit247.com/acatalog/Traders_Corner.html
However, when I submit I get an error. Does anyone know 1. Why? and 2. How the heck do I solve it?
The way I have added this code is by pasting the code below into the text section of this Fragment...
"
!!<<table width="450" border="0">
<tr>
<td colspan="2">
[Registered]
</td>
</tr>
<tr>
<td>
<b>[UsernamePrompt]</b>
</td>
<td>
<input type="text" name="USER" size="20" maxlength="60" />
</td>
</tr>
<tr>
<td>
<b>[PasswordPrompt]</b>
</td>
<td>
<input type="password" name="PASS" size="20" maxlength="60" />
</td>
</tr>
<tr>
<td colspan="2">
<input type="submit" name="ACTION" value="[Login]" onclick="SubmitLogin(this.form.name);" />
<input type="hidden" name="HASH" value="" />
</td>
</tr>
<tr>
<td colspan="2">
<Actinic:PRODUCTNOTAVAILABLE />
[Unregistered]
</td>
</tr>
</table>
<actinic:block if="%3cactinic%3avariable%20name%3d%22IsSSLUsedForWholeSite%22%20%2f%3e" />
<input type="hidden" name="SSLBOUNCE" value="1" />
</actinic:block>
<actinic:block if="%3cactinic%3avariable%20name%3d%22IsSSLNotUsed%22%20%2f%3e">
<input type="hidden" name="SSLBOUNCE" value="" />
</actinic:block>
<script language="javascript" type="text/javascript">
<!--
for (nIndex = 0; nIndex < document.forms.length; nIndex++)
{
if (document.forms[nIndex] && document.forms[nIndex].USER)
{
document.forms[nIndex].USER.focus();
}
}
// -->
</script>
<input type="hidden" name="challenge" value="[Challenge]" />
<input type="hidden" name="challengeout" value="" />!!"
There is a form, standard with Actinic that lets users log in (in this instance for Trade pricing).
I have tried to add the same form to another page here...
http://www.buyit247.com/acatalog/Traders_Corner.html
However, when I submit I get an error. Does anyone know 1. Why? and 2. How the heck do I solve it?
The way I have added this code is by pasting the code below into the text section of this Fragment...
"
!!<<table width="450" border="0">
<tr>
<td colspan="2">
[Registered]
</td>
</tr>
<tr>
<td>
<b>[UsernamePrompt]</b>
</td>
<td>
<input type="text" name="USER" size="20" maxlength="60" />
</td>
</tr>
<tr>
<td>
<b>[PasswordPrompt]</b>
</td>
<td>
<input type="password" name="PASS" size="20" maxlength="60" />
</td>
</tr>
<tr>
<td colspan="2">
<input type="submit" name="ACTION" value="[Login]" onclick="SubmitLogin(this.form.name);" />
<input type="hidden" name="HASH" value="" />
</td>
</tr>
<tr>
<td colspan="2">
<Actinic:PRODUCTNOTAVAILABLE />
[Unregistered]
</td>
</tr>
</table>
<actinic:block if="%3cactinic%3avariable%20name%3d%22IsSSLUsedForWholeSite%22%20%2f%3e" />
<input type="hidden" name="SSLBOUNCE" value="1" />
</actinic:block>
<actinic:block if="%3cactinic%3avariable%20name%3d%22IsSSLNotUsed%22%20%2f%3e">
<input type="hidden" name="SSLBOUNCE" value="" />
</actinic:block>
<script language="javascript" type="text/javascript">
<!--
for (nIndex = 0; nIndex < document.forms.length; nIndex++)
{
if (document.forms[nIndex] && document.forms[nIndex].USER)
{
document.forms[nIndex].USER.focus();
}
}
// -->
</script>
<input type="hidden" name="challenge" value="[Challenge]" />
<input type="hidden" name="challengeout" value="" />!!"
Comment