login-admin.html 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <!DOCTYPE html>
  2. <html lang=zh-cn>
  3. <head>
  4. <meta charset=utf-8>
  5. <title>登录CLD.System</title>
  6. <meta name=description content=纵横内部信息管理系统>
  7. <link rel="shortcut icon" href="images/favicon.ico">
  8. <meta name=copyright content=smartcost.com.cn>
  9. <link rel=stylesheet href=css/global.css>
  10. <script src=js/jquery-1.7.1.min.js></script>
  11. <script src=js/global.js></script>
  12. </head>
  13. <style>
  14. #animation{
  15. -webkit-animation:infinite pulse 4s 1s ease both;
  16. -moz-animation:infinite pulse 4s 1s ease both;}
  17. @-webkit-keyframes pulse{
  18. 0%{-webkit-transform:scale(1)}
  19. 50%{-webkit-transform:scale(1.1)}
  20. 100%{-webkit-transform:scale(1)}
  21. }
  22. @-moz-keyframes pulse{
  23. 0%{-moz-transform:scale(1)}
  24. 50%{-moz-transform:scale(1.1)}
  25. 100%{-moz-transform:scale(1)}
  26. }
  27. </style>
  28. <body class="loginBg">
  29. <div class="loginIndex">
  30. <div class="loginPanel inputErrow">
  31. <div class="warpLogin clearfix">
  32. <h2>后台登陆</sup></h2>
  33. <form id="loginform" name="loginform" method="post">
  34. <div class="formLine">
  35. <label class="textTips">帐号</label>
  36. <input class="text" type="text">
  37. </div>
  38. <div class="formLine">
  39. <label class="textTips">密码</label>
  40. <input type="password" class="text">
  41. </div>
  42. <div class="formLine clearfix">
  43. <input type="submit" value="登录" class="button"><span class="submitSus"></span>
  44. </div>
  45. </form>
  46. </div>
  47. <p class="formLink"><a href="http://smartcost.com.cn" target="_blabk">返回用户登录</a></p>
  48. </div>
  49. </div>
  50. </body>