自定义 PHP 登录表单

Custom PHP login form

是否可以在没有这些填写框的情况下创建 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 ...}

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

您的登录 'form' 将如下所示:

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

我在这里找到了一个代码:http://terminal.jcubic.pl/examples.php#json_rpc_demo
演示在这里:http://terminal.jcubic.pl/rpc-demo.html