logout.html 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <!DOCTYPE html>
  2. <!--[if IE 8]> <html lang="en" class="ie8 no-js"> <![endif]-->
  3. <!--[if IE 9]> <html lang="en" class="ie9 no-js"> <![endif]-->
  4. <!--[if !IE]><!-->
  5. <html>
  6. <!--<![endif]-->
  7. <!-- BEGIN HEAD -->
  8. <head>
  9. <meta charset="utf-8"/>
  10. <title>避雷器在线监测</title>
  11. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  12. <meta content="width=device-width, initial-scale=1.0" name="viewport"/>
  13. <meta http-equiv="Content-type" content="text/html; charset=utf-8">
  14. <link href="/static/assets/exception/css/exception-714009c721b0b26a7726e67779e80662.css" rel="stylesheet" type="text/css"/>
  15. <link href="/static/assets/exception/css/lock.css" rel="stylesheet" type="text/css"/>
  16. <!-- END THEME STYLES -->
  17. <link rel="shortcut icon" href="/favicon.ico"/>
  18. <link href="/static/css/style.bundle.css" rel="stylesheet" type="text/css">
  19. <link href="/static/assets/backend/css/vendors.bundle.css" rel="stylesheet" type="text/css">
  20. <link rel="stylesheet" type="text/css" href="/static/css/site.css">
  21. <style type="text/css">
  22. .lock-form h5 {
  23. margin-top: 0px;
  24. color: #dbe2ea;
  25. font-size: 14px;
  26. font-weight: 400;
  27. }
  28. </style>
  29. </head>
  30. <body>
  31. <div class="lock-head">
  32. 已退出
  33. </div>
  34. <div class="lock-body">
  35. <div class="lock-form" style="text-align: center;">
  36. <h4>你已成功退出登录,单点登录也一并退出</h4>
  37. </div>
  38. <div class="lock-form" style="text-align: center;margin-top: 50px;">
  39. <h5><STRONG id="second">5</STRONG> 秒后自动返回登录页</h5>
  40. </div>
  41. </div>
  42. <div class="lock-bottom">
  43. <a href="/">回到登录页</a>
  44. </div>
  45. </body>
  46. </html>
  47. <script type="text/javascript">
  48. var time=5;
  49. function exit()
  50. {
  51. time--;
  52. if(time<=0){
  53. window.location.href = "/";
  54. return;
  55. }
  56. setTimeout(function(){
  57. document.getElementById("second").innerHTML=time;
  58. exit();
  59. },1000);
  60. }
  61. exit();
  62. </script>