You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.
Put this on our static index.html page and it seems to work fine.. but I removed the following line as it seemed to only be for cookie handling;
(CGIVAR)common_hidden_fields(/CGIVAR)
Also, changed:
<input type="TEXT" name="custacct_id" size="30" value="(CGIVAR)fd_act(/CGIVAR)">
to:
<input type="TEXT" name="custacct_id" size="30">
Anyone see a problem with this? Thanks!
<FORM name="login" action="../cgi-bin/ccp51/cp-app.cgi" method="post">
<BR>
<input type="HIDDEN" name="pg" value="ste_custacct_proc">
<TABLE cellSpacing=2 cellPadding=2 width="100%" border=0>
<TBODY>
<TR>
<TD width=50>
<DIV align=right>Email:</DIV></TD>
<TD width=102><INPUT type="text" size="15" name="custacct_id"></TD>
<TD width=43></TD></TR>
<TR>
<TD width=50>
<DIV align=right>Password:</DIV></TD>
<TD width=102><INPUT type="password" size="15" name="custacct_password"></TD>
<TD width=43>
<DIV align=center><INPUT type="submit" value="Go" name="submitButtonName"></DIV></TD></TR></TBODY></TABLE><A href="../cgi-bin/ccp51/cp-app.cgi?&pg=ste_custacctemp">Forgot Password?</A> <A href="../cgi-bin/ccp51/cp-app.cgi?&pg=ste_custacctnew">New Account</A>
</FORM>
Offline
Hi,
one problem, yes :
replace it with this :
<A href="../cgi-bin/ccp51/cp-app.cgi?&pg=custacctemp">Forgot Password?</A> <A href="../cgi-bin/ccp51/cp-app.cgi?&pg=custacctnew">New Account</A>
Offline
48hourprint,
Did this work for you??
Offline
Works fine... but I have no idea why Nav pasted the exact same HTML that was already posted... and then stated there was a problem with it??
here's a link on our dev server home page if you want to see it.
Offline
48hourprint,06/27/2004 09:59:04 PM wrote:
Works fine... but I have no idea why Nav pasted the exact same HTML that was already posted... and then stated there was a problem with it??
here's a link on our dev server home page if you want to see it.
48hourprint,
Thanks for letting me know. After I messaged you I noticed that the code has an apparently harmless typo:
<A href="../cgi-bin/ccp51/cp-app.cgi?&pg=ste_custacctemp">Forgot Password?</A> <A href="../cgi-bin/ccp51/cp-app.cgi?&pg=ste_custacctnew">New Account</A>
There is an extra name/value par parm separator (the "&") char after the query string separator (the "?" char) in the URL.
Offline