| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <!DOCTYPE html>
- <html lang="zh-cn">
- <head>
- <!-- Required meta tags -->
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <!-- Bootstrap CSS -->
- <link rel="stylesheet" href="css/bootstrap.css">
- <link rel="stylesheet" href="css/global.css">
- <link rel="stylesheet" href="css/ionicons.css">
- </head>
- <body>
- <div class="login-wrap">
- <!-- <div class="login-top"></div> -->
- <div class="login-form">
- <h2 class="login-title">帮助中心后台</h2>
- <form>
- <div class="form-group">
- <div class="input-group">
- <div class="input-group-addon"><span class="ion-person"></span></div>
- <input type="text" class="form-control" id="" placeholder="请输入用户名">
- </div>
- </div>
- <div class="form-group">
- <div class="input-group">
- <div class="input-group-addon"><span class="ion-key"></span></div>
- <input type="password" class="form-control" id="" placeholder="请输入密码">
- </div>
- </div>
- <button type="button" class="btn btn-blue btn-block">登录</button>
- </form>
- </div>
- </div>
- <!-- jQuery first, then Popper.js, then Bootstrap JS. -->
-
- </body>
- </html>
|