构建登录页面

时间:2014-04-22 23:43:46

标签: html html5

有没有人有一个简单的前端html登录的良好开端?我一般都是html和编码的新手。另外,如何将登录与我的其他工作(如数据库)连接?

1 个答案:

答案 0 :(得分:0)

    <html>
    <head>
    <title>
    Login page
    </title>
    </head>
    <body>
    <form name="login">
    Username<input type="text" name="userid"/>
    Password<input type="password" name="pswrd"/>
    <input type="button" onclick="check(this.form)" value="Login"/>
    <input type="reset" value="Cancel"/>
    </form>

    </body>
    </html>

这只是一个非常简单的登录表单,没有css,但我只是去引导并使用他们的登录表单http://getbootstrap.com/examples/signin/