login.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!DOCTYPE html>
  2. <html lang="zh-cn">
  3. <head>
  4. <!-- Required meta tags -->
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7. <!-- Bootstrap CSS -->
  8. <link rel="stylesheet" href="css/bootstrap.css">
  9. <link rel="stylesheet" href="css/global.css">
  10. <link rel="stylesheet" href="css/ionicons.css">
  11. </head>
  12. <body>
  13. <div class="login-wrap">
  14. <!-- <div class="login-top"></div> -->
  15. <div class="login-form">
  16. <h2 class="login-title">帮助中心后台</h2>
  17. <form>
  18. <div class="form-group">
  19. <div class="input-group">
  20. <div class="input-group-addon"><span class="ion-person"></span></div>
  21. <input type="text" class="form-control" id="" placeholder="请输入用户名">
  22. </div>
  23. </div>
  24. <div class="form-group">
  25. <div class="input-group">
  26. <div class="input-group-addon"><span class="ion-key"></span></div>
  27. <input type="password" class="form-control" id="" placeholder="请输入密码">
  28. </div>
  29. </div>
  30. <button type="button" class="btn btn-blue btn-block">登录</button>
  31. </form>
  32. </div>
  33. </div>
  34. <!-- jQuery first, then Popper.js, then Bootstrap JS. -->
  35. </body>
  36. </html>