login.html 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Insert title here</title>
  6. <style type="text/css">
  7. .wrapper{
  8. background:url("images/backround.png") no-repeat;
  9. height:1000px;
  10. /* margin-top: 100px; */
  11. }
  12. .wrapper1{
  13. margin-top:100px;
  14. }
  15. .table{
  16. margin-left:100px;
  17. margin-top:100px;
  18. }
  19. .ziti{
  20. font-size:25px;
  21. font-weight:blod;
  22. color:white;
  23. margin-bottom:20px;
  24. }
  25. .manager{
  26. color:white;
  27. }
  28. </style>
  29. </head>
  30. <body>
  31. <div class="wrapper">
  32. <div class="wrapper1">
  33. <img alt="" src="images/logo.png">
  34. </div>
  35. <form class="table" action = "login" method="post">
  36. <div class="ziti">&nbsp&nbsp&nbsp&nbsp管理员登录页面</div>
  37. <table width="400" height = "200" border="5" bordercolor="#A0A0A0">
  38. <tr>
  39. <th class="manager">管理员账号:</th>
  40. <td><input type="text" name="username" value = "请输入用户名" maxlength = "16" onfocus = "if(this.value == '请输入用户名') this.value =''"></td>
  41. </tr>
  42. <tr>
  43. <th class="manager">请输入密码:</th>
  44. <td><input type="password" name="password" maxlength = "20"></td>
  45. </td>
  46. </tr>
  47. <tr>
  48. <td colspan = "2" align = "center">
  49. <input type="submit" name="submit" value="登 录">
  50. <input type="submit" value="注 册" >
  51. </td>
  52. </tr>
  53. </table>
  54. </form>
  55. </div>
  56. </body>
  57. </html>