自定义PHP登录表单

时间:2015-01-02 09:16:33

标签: javascript php forms login

是否可以在没有这些填充框的情况下创建PHP登录表单?

请参阅:http://terminal.jcubic.pl/rpc-demo.html

代码可以包含JavaScript。它应该看起来像一个Linux终端:

username: {the user writes his username then presses enter; the following line appears:}
username@password: {the user writes the password ...}

2 个答案:

答案 0 :(得分:1)

答案 1 :(得分:0)

您可以使用样式化的textarea HTML元素模拟Linux终端。有jQuery library可以帮助您做到这一点。

您的登录'表单'将如下所示: enter image description here

然后,您可以在服务器端检查并继续用户输入。

相关问题