| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <!DOCTYPE html>
- <html lang=zh-cn>
- <head>
- <meta charset=utf-8>
- <title>登录CLD.System</title>
- <meta name=description content=纵横内部信息管理系统>
- <link rel="shortcut icon" href="images/favicon.ico">
- <meta name=copyright content=smartcost.com.cn>
- <link rel=stylesheet href=css/global.css>
- <script src=js/jquery-1.7.1.min.js></script>
- <script src=js/global.js></script>
- </head>
- <style>
- #animation{
- -webkit-animation:infinite pulse 4s 1s ease both;
- -moz-animation:infinite pulse 4s 1s ease both;}
- @-webkit-keyframes pulse{
- 0%{-webkit-transform:scale(1)}
- 50%{-webkit-transform:scale(1.1)}
- 100%{-webkit-transform:scale(1)}
- }
- @-moz-keyframes pulse{
- 0%{-moz-transform:scale(1)}
- 50%{-moz-transform:scale(1.1)}
- 100%{-moz-transform:scale(1)}
- }
- </style>
- <body class="loginBg">
- <div class="loginIndex">
- <div class="loginPanel inputErrow">
- <div class="warpLogin clearfix">
- <h2>后台登陆</sup></h2>
- <form id="loginform" name="loginform" method="post">
- <div class="formLine">
- <label class="textTips">帐号</label>
- <input class="text" type="text">
- </div>
- <div class="formLine">
- <label class="textTips">密码</label>
- <input type="password" class="text">
- </div>
- <div class="formLine clearfix">
- <input type="submit" value="登录" class="button"><span class="submitSus"></span>
- </div>
- </form>
- </div>
- <p class="formLink"><a href="http://smartcost.com.cn" target="_blabk">返回用户登录</a></p>
- </div>
- </div>
- </body>
|