login.html 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <!DOCTYPE html>
  2. <meta name="viewport" content="width=device-width,initial-scale=1.0">
  3. <html>
  4. <head>
  5. <meta charset="utf-8">
  6. <title>油气回收在线监控系统云平台</title>
  7. <!--<style>
  8. .center {
  9. margin: auto;
  10. width: 60%;
  11. border: 3px solid rgb(255, 255, 255);
  12. padding: 10px;
  13. }
  14. </style>-->
  15. <link rel="stylesheet" type="text/css" href="./mystyle.css" />
  16. <style>
  17. body {
  18. padding: 0px;
  19. margin:0px;
  20. width:100%;
  21. height: 100%;
  22. background-image: url(sky.jpg);
  23. background-color:#bdd0de;
  24. background-repeat:no-repeat;
  25. background-attachment:fixed;
  26. }
  27. backup {
  28. background-color: #3ba3f8;
  29. }
  30. #header {
  31. width: 100%;
  32. height: 20%;
  33. color:white;
  34. display: flex;
  35. margin-left: 5%;
  36. }
  37. #footer {
  38. width: 100%;
  39. height: auto;
  40. color:white;
  41. display: flex;
  42. }
  43. #footer p{
  44. color:rgb(255, 255, 255);
  45. margin-left: 40%;
  46. }
  47. h2 {
  48. margin-left: 10px;
  49. }
  50. .registerBg{
  51. height: 480px;
  52. display: flex;
  53. }
  54. @media screen and (min-width:860px){.registerBox{margin-left: 60%;}}
  55. @media screen and (max-width:860px){.registerBox{margin-left: 10%;}}
  56. .registerBox{
  57. height: 280px;
  58. width: 320px;
  59. background-color: rgb(255, 255, 255);
  60. margin-top: 5%;
  61. }
  62. .regTittle{
  63. font-size: 18px;
  64. font-weight: 400;
  65. margin-left: 12%;
  66. width:76%;
  67. margin-top: 24px;
  68. }
  69. .acc, .pwd{
  70. font-size: 18px;
  71. margin-left: 12%;
  72. width:76%;
  73. margin-top: 8px;
  74. }
  75. .doReg{
  76. margin-left: 12%;
  77. width:76%;
  78. height: 28px;
  79. background-color: #00c1de;
  80. border: none;
  81. color: white;
  82. font-size: 18px;
  83. margin-top: 18px;
  84. }
  85. </style>
  86. </head>
  87. <body id='body-login'>
  88. <div id="header">
  89. <h1>油气回收在线监控系统云平台</h1>
  90. </div>
  91. <div class="registerBg" id="registerBg">
  92. <section class="registerBox">
  93. <div class="regTittle">密码登录</div>
  94. <br>
  95. <form method="post" action="/">
  96. <input type="text" class="acc" placeholder="请输入账号" id="acc" name="acc">
  97. <br>
  98. <input type="password" placeholder="请输入密码" class="pwd" name="pwd" id="pwd" />
  99. <!--<div class="other bd">
  100. <label class="obey bd"><input type="checkbox" id="remPwd" checked>&nbsp;记住密码</label><a class="forgetPwd">忘记密码?</a>
  101. </div>-->
  102. <br><br>
  103. <button class="doReg" id="doLogin">登录</button>
  104. </form>
  105. </section>
  106. </div>
  107. <div id="footer">
  108. <p>版权所有 © </p>
  109. </div>
  110. </body>
  111. </html>