0

我正在尝试在我的 html 页面的标题部分中实现一个登录表单。

从某种意义上说,我只想在调用 url 时显示一个弹出文本框。

示例when a user try to call "www.myserver.com/lodapages.html" i want the user to enter a password before the content of the page loads.

如果密码匹配,则用户可以看到页面内容,否则不。

这就是我们通常尝试访问 mysql 服务器时发生的情况。

那么,任何人都可以帮助我解决这个问题。还是有其他简单的实现方式?我正在使用 php codeigniter。

4

3 回答 3

2

您不会轻易阻止页面加载这样的弹出窗口。

要么你去编码一个标准的三步验证:

  1. 用户请求页面
  2. 如果他被认证,他得到它,否则他被重定向到登录页面
  3. 如果身份验证成功,则将他重定向到请求的页面

或者您只是使用htaccess 保护(实际上会弹出一个身份验证对话框......):

于 2013-06-06T09:54:22.257 回答
1
on load call javascript prompt method and get password from user after that redirect user to next page.
于 2013-06-06T09:56:07.373 回答
1

在codeigniter中,也许你可以使用一个login.php视图作为默认的视图页面,当用户尝试调用你的页面时,会显示login.php并要求用户输入密码。用户输入正确的密码后,您可以使用控制器登录将页面重定向到 lodapages.html。

于 2013-06-06T10:26:54.723 回答