options.html 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=11,IE=10,IE=9,IE=8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
  7. <meta name="apple-mobile-web-app-title" content="CodeDay">
  8. <meta http-equiv="Cache-Control" content="no-siteapp">
  9. <title>配置</title>
  10. <style>
  11. .label {
  12. line-height: 30px;
  13. font-size: 16px;
  14. color: #666;
  15. }
  16. input {
  17. width: 100%;
  18. height: 30px;
  19. }
  20. .login-button {
  21. height: 40px;
  22. background-color: #009fe9;
  23. background-image: none;
  24. color: white;
  25. font-weight: normal;
  26. margin: 0;
  27. padding: 0;
  28. border: none;
  29. margin: 10px 0;
  30. font-size: 16px;
  31. box-shadow: none;
  32. cursor: pointer;
  33. display: block;
  34. width: 100%;
  35. }
  36. </style>
  37. </head>
  38. <body>
  39. <div class="login-box">
  40. <div class="label">用户名:</div>
  41. <input id="username" type="text">
  42. <div class="label">密码:</div>
  43. <input id="password" type="password">
  44. <button class="login-button">登录</button>
  45. </div>
  46. <script type="text/javascript" src="js/options.js"></script>
  47. </body>
  48. </html>