1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" /> <title>登录</title> <link rel="stylesheet" type="text/css" href="https://cdn.bootcss.com/twitter-bootstrap/4.1.3/css/bootstrap.css" /> <style type="text/css"> .container-small { margin-top: 5%; max-width: 500px; } .btn { background-color: #da7a89; border-color: #da7a89; } </style> </head> <body> <div class="container container-small"> <h1>登录</h1> <form action="" method="post"> <div class="alert alert-success"> 登陆成功~正在跳转 </div> <div class="form-group"> <lable>用户名</lable> <input class="form-control" type="text" value="" /> </div> <div class="form-group"> <lable>密 码</lable> <input class="form-control" type="password" value="" /> </div> <div class="form-group"> <button class="btn btn-primary btn-block">登录</button> </div> </form> </div> </body> </html> |