1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <!DOCTYPE html>
- <!--[if IE 8]> <html lang="en" class="ie8 no-js"> <![endif]-->
- <!--[if IE 9]> <html lang="en" class="ie9 no-js"> <![endif]-->
- <!--[if !IE]><!-->
- <html>
- <!--<![endif]-->
- <!-- BEGIN HEAD -->
- <head>
- <meta charset="utf-8"/>
- <title>避雷器在线监测</title>
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta content="width=device-width, initial-scale=1.0" name="viewport"/>
- <meta http-equiv="Content-type" content="text/html; charset=utf-8">
- <link href="/static/assets/exception/css/exception-714009c721b0b26a7726e67779e80662.css" rel="stylesheet" type="text/css"/>
- <link href="/static/assets/exception/css/lock.css" rel="stylesheet" type="text/css"/>
- <!-- END THEME STYLES -->
- <link rel="shortcut icon" href="/favicon.ico"/>
- <link href="/static/css/style.bundle.css" rel="stylesheet" type="text/css">
- <link href="/static/assets/backend/css/vendors.bundle.css" rel="stylesheet" type="text/css">
- <link rel="stylesheet" type="text/css" href="/static/css/site.css">
- <style type="text/css">
- .lock-form h5 {
- margin-top: 0px;
- color: #dbe2ea;
- font-size: 14px;
- font-weight: 400;
- }
- </style>
- </head>
- <body>
- <div class="lock-head">
- 已退出
- </div>
- <div class="lock-body">
- <div class="lock-form" style="text-align: center;">
- <h4>你已成功退出登录,单点登录也一并退出</h4>
- </div>
- <div class="lock-form" style="text-align: center;margin-top: 50px;">
- <h5><STRONG id="second">5</STRONG> 秒后自动返回登录页</h5>
- </div>
- </div>
- <div class="lock-bottom">
- <a href="/">回到登录页</a>
- </div>
- </body>
- </html>
- <script type="text/javascript">
- var time=5;
- function exit()
- {
- time--;
- if(time<=0){
- window.location.href = "/";
- return;
- }
- setTimeout(function(){
- document.getElementById("second").innerHTML=time;
- exit();
- },1000);
- }
- exit();
- </script>
|