0

我注意到由于缺乏详细信息和信息,我的旧问题已经结束。

基本上我需要的是在我的 Popup 插件中工作的当前登录系统。

http://justxp.plutohost.net/test3/

单击“登录”按钮以打开弹出窗口。

我需要使用我拥有的登录系统的用户名表单、密码表单、提交表单。

这就是我所说的弹出窗口:

<a href="#" class="big-link" data-reveal-id="myModal"><img src="img/login.png" 
onmouseover="this.src='img/hover1.png'" 
onmouseout="this.src='img/login.png'"></a>

<div id="myModal" class="reveal-modal">
<h1>Login</h1>
<p>Please enter your username and password carefully.</p>
</form>
<a class="close-reveal-modal">&#215;</a>
</div>

我用于弹出模式的插件:http ://www.zurb.com/playground/reveal-modal-plugin

这是我的login.php,我真的不明白他们是如何在这个中完成登录系统的:

http://pastebin.com/WegLBhYi

该脚本基本上打印出错误消息,并在登录时重定向到 member.php 文件。

我想要什么:

我希望这个确切的登录系统在弹出窗口中也能正常工作,成功登录后,它也会将您重定向到 member.php,如果登录失败,它会将您重定向到 logerror.php(具有相同布局的新页面)并显示错误消息并允许您重新登录。

这是我的 header.php,它基本上显示了登录用户或访客的布局

http://pastebin.com/XCcnNiKg

如果您对如何使用此代码进行登录有任何想法,那就太好了!如您所见,此脚本的编码非常糟糕。

谢谢!

4

1 回答 1

1

The form inside your lightbox login has no action on it. Look at line 40 of the HTML Source. So right now the form is just submitting to the same page and sending the info as GET variables. I don't see in your PHP code where you create the myModal div but you need to add an action that sends info to a php file that can check the login and password against your database, it can then redirect to member.php or the logerror.php

Also FYI You have two different versions of Jquery being loaded.

于 2012-09-26T14:09:32.597 回答