如何创建一个替换get表单中的用户名和密码的登录页面?

时间:2015-08-29 12:24:25

标签: php authentication login

我需要知道是否有创建登录页面的方法(这可以是一个非常简单的方法,只有两个用于用户名和密码的方框),它引入了用户名和密码并将其插入此页面链接:

http://api.blabla.com/?method=blabla.users.authenticate&username=(<USERNAME GOES HERE>)&password=(<PASSWORD GOES HERE>)

所以,假设我已经创建了登录页面,我在用户名字段中引入了Gogogogoll21,然后在密码字段123中引入了http://api.blabla.com/?method=blabla.users.authenticate&username=Gogogogoll21&password=123

我需要该页面重定向到此链接:

{{1}}

正如您所看到的,页面唯一做的就是在用户名字段中输入用户名并将其放在&#34; username =&#34;之后,它与密码完全相同。< / p>

1 个答案:

答案 0 :(得分:1)

这样的事情可以解决问题,但考虑一下如果以纯文本传递密码是个好主意

<form method="get" action="http://api.blabla.com/">
    <input type="hidden" name="method" value="blabla.users.authenticate">
    User: <input type="text" name="username"><br>
    Pass: <input type="password" name="password"><br>
    <input type="submit">
</form>

这是纯HTML,您不一定需要PHP来执行此操作。