error.html 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <link type="text/css" rel="stylesheet" href="__STATIC__/home/css/common.css"/>
  5. <title>ThinkCMF-跳转提示</title>
  6. <include file="public@head"/>
  7. <style type="text/css">
  8. *{ padding: 0; margin: 0; }
  9. body{ background: #fff; font-family: '微软雅黑'; color: #333; font-size: 16px; }
  10. .system-message{ padding: 24px 48px;text-align: center; }
  11. .system-message h1{ font-size: 20px; font-weight: normal; line-height: 60px;text-align: center;}
  12. .system-message .jump{ margin-top:-40px;text-align:center}
  13. .system-message .success,.system-message .error{ line-height: 1.8em; font-size: 36px;margin-top:-40px}
  14. .system-message .detail{ font-size: 12px; line-height: 20px; margin-top: 12px; display:none}
  15. </style>
  16. </head>
  17. <body class="body-white">
  18. <include file="public@header"/>
  19. <div class="system-message">
  20. <present name="message">
  21. <h1>尚未登录</h1>
  22. <p class="success"><?php echo($message); ?></p>
  23. <else/>
  24. <!-- <h1>尚未登录</h1> -->
  25. <p class="error" style="text-align:center"><img src="__STATIC__/home/images/Nologon.gif"></p>
  26. </present>
  27. <p class="detail"></p>
  28. <p class="jump">
  29. <a id="href" href="<?php echo($jumpUrl); ?>"></a><?php echo($msg); ?><b id="wait"><?php echo($wait); ?></b>
  30. </p>
  31. </div>
  32. <include file="public@footer"/>
  33. <script type="text/javascript">
  34. (function(){
  35. var wait = document.getElementById('wait'),href = document.getElementById('href').href;
  36. var interval = setInterval(function(){
  37. var time = --wait.innerHTML;
  38. if(time <= 0) {
  39. location.href = href;
  40. clearInterval(interval);
  41. };
  42. }, 1000);
  43. })();
  44. </script>
  45. </body>
  46. </html>