分享Bootstrap简单表格、表单、登录页面(2)

<!doctype html> <html> <head> <meta charset="utf-8"> <title>登录</title> <meta content="width=device-width, initial-scale=1"> <link href="https://www.jb51.net/css/bootstrap.css"> <script src="https://www.jb51.net/js/jQuery-1.9.0.min.js"></script> <script src="https://www.jb51.net/js/bootstrap.min.js"></script> </head> <body> <div> <div> <div> <h1>用户登录</h1> <form role="form"> <div> <label for="userId">用户名:</label> <input type="text" placeholder="请输入账号"> </div> <div> <label for="password">密 码:</label> <input type="password" placeholder="请输入密码"> </div> <div> <label> <input type="checkbox"/>记住密码 </label> <br/> <input type="submit" value="登录"/> </div> </form> </div> </div> </div> </body> </html>

分享Bootstrap简单表格、表单、登录页面

<!doctype html> <html> <head> <meta charset="utf-8"> <title>登录</title> <meta content="width=device-width, initial-scale=1"> <link href="https://www.jb51.net/css/bootstrap.css"> <script src="https://www.jb51.net/js/jquery-1.9.0.min.js"></script> <script src="https://www.jb51.net/js/bootstrap.min.js"></script> </head> <body> <div> <h1>用户登录</h1> <form role="form"> <div> <div > <div>@</div> <input type="text" placeholder="请输入账号"> </div> </div> <div> <label for="password">密 码:</label> <input type="password" placeholder="请输入密码"> </div> <div> <label> <input type="checkbox"/>记住密码 </label> <input type="submit" value="登录"/> </div> </form> </div> </body> </html>

分享Bootstrap简单表格、表单、登录页面

<!doctype html> <html> <head> <meta charset="utf-8"> <title>登录</title> <meta content="width=device-width, initial-scale=1"> <link href="https://www.jb51.net/css/bootstrap.css"> <script src="https://www.jb51.net/js/jquery-1.9.0.min.js"></script> <script src="https://www.jb51.net/js/bootstrap.min.js"></script> </head> <body> <div> <div> <div> <h2>用户登录</h2> <form role="form"> <div> <label for="userId">账号:</label> <div> <input type="text" placeholder="请输入账号"> </div> <span>A block of help text that breaks onto a new line and may extend beyond one line.</span> </div> <div> <label for="password">密码:</label> <div> <input type="password" placeholder="请输入密码"> </div> </div> <div> <div> <input type="submit" value="登录"/> <input type="reset" value="重置"/> </div> </div> </form> </div> </div> </div> </body> </html>

分享Bootstrap简单表格、表单、登录页面

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wydsps.html