0

我网站的成员应该在成功输入他们的登录信息后被发送到成员目录。但是,在点击“登录”按钮后,它们都被发送回我网站的主页。

我的网站最近发生了一些变化,这可能是原因,但我不知道是什么原因。我根本没有触及登录编码。

我指的登录页面是http://www.teleworkrecruiting.com/page25.html

任何反馈将不胜感激。

谢谢你,帕梅拉

代码:

 <div id="Ggeo768" class="dfltc">
<h1 align="center"> <font face="arial">Login Required </font></h1>
<div align="center"><FONT face="Arial">Members, log in to access the latest hiring        companies and 
jobs.<BR>
</FONT> <font face="Arial">If you are not a registered user, <a      href="telecommute.html">  CLICK HERE</a> 

and sign up for access!</font></div>
<p align="center">
<form method="post" action="/"dir09.php">

<div align="center">User ID: 
 <input type="text" name="uid" size="8" />
<br /><br>
Password: 
 <input type="password" name="pwd" SIZE="8" />
<br /><br>
<input type="submit" value="Log in" />
</div>
</form>
<div align="center"></p> </div>
 </body>

</html></div>
</div>

<div id="Oobj590" style="position:absolute;z-index:7;visibility:visible;           left:563px;top:25px;width:158px;height:65px;">
<div id="Grtf591" class="dfltt">
<div align="center"><font face="Arial" class="fsx05" color="#ffffff">         <B>Telecommuting<br>
Job Seekers<br>
<a href="telecommute.html"><font color="#ffffff">Click Here</font></a><br></B></font>    </div>
</div>
</div>

<div id="Oobj1325" style="position:absolute;z-index:8;visibility:visible;    left:275px;top:824px;width:400px;height:19px;">
 <div id="Grtf608" class="dfltt">
<div align="center"><font face="Arial" class="fsx01" color="#ff0000">Lost your     username or password?&nbsp; </font><font face="Arial" class="fsx01">Write to <a         href="mailto:admin@teleworkrecruiting.com?subject=Lost username or password"          title="Administrator">admin@teleworkrecruiting.com</a><br></font></div>
</div>

4

1 回答 1

0

(跟进上面的评论)

page25.html中,注意form标签的声明:

<form method="post" action="/"dir09.php">action-属性中有一个额外的撇号!用这个替换它:

<form method="post" action="/dir09.php">

于 2012-06-24T15:18:39.820 回答