Hello,
I have installed and am using
this Login - Redirect script. I have created a HTML page with a small embedded iFrame window that shows the login prompt from the script (login.html). You can view the page
here. The problem is...
When I fill out and submit the login information it redirects to the correct page of my choosing but only loads the page within the small iFrame area instead of what I would like... reloading the entire page. How can I change this?
The code for the current iFrame window is...
Quote:
<HTML>
<HEAD>
<TITLE>Login</TITLE>
</HEAD>
<BODY>
<font face="Verdana" size="4" color="#000000">Login to Ticketing Area</font>
<FORM METHOD="POST" ACTION="redirect.php" target="_self">
<P><font face="Verdana" size="2" color="#000000"><STRONG>Username:</STRONG><BR>
</font><font color="#000000" face="Verdana">
<INPUT TYPE="text" NAME="username" SIZE=25 MAXLENGTH=25></font></p>
<P><font face="Verdana" size="2" color="#000000"><STRONG>Password:</STRONG><BR>
</font><font color="#000000" face="Verdana">
<INPUT TYPE="password" NAME="password" SIZE=25 MAXLENGTH=25></font></p>
<P><font face="Verdana"><font color="#000000">
<input type="checkbox" name="remember" value="Yes"></font><font size="2" color="#000000">Remember
me from this computer</font></font></p>
<P><font color="#000000">
<INPUT TYPE="submit" NAME="submit" VALUE="Login" style="font-family: Verdana"></font></P>
</FORM>
</BODY>
</HTML>
|
The page originally did not have target="_self" in the code. That was added, however does not work. If I change it to target="_blank" or target="_parent" it opens in a new window as it should but I think I need some additional CSS or JavaScript to force the window to resize?
Basically I am wanting the page to redirect to an entirely new page (within the current window) not within the size controlled Iframe. Hopefully that makes sense.
Any help would be really helpful
Thank you