| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {__NOLAYOUT__}<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>页面错误</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no"/>
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
- <link rel="stylesheet" href="/static/css/404.css" />
- </head>
- <body>
- <div class="main_404">
- <img src="/static/images/404.png" />
- <br>
- <p class="main_404_desc">
- <?php switch ($code) {?>
- <?php case 1:?>
- <p class="success"><?php echo(strip_tags($msg));?></p>
- <?php break;?>
- <?php case 0:?>
- <p class="error"><?php echo(strip_tags($msg));?></p>
- <?php break;?>
- <?php } ?>
- </p>
- <br>
- <p><span><a href="/" class="main_404_back">< 返回首页</a> 页面自动 <a id="href" href="<?php echo($url);?>">跳转</a> 等待时间: <b id="wait"><?php echo($wait);?></b></span></p>
- </div>
- </body>
- <script type="text/javascript">
- (function(){
- var wait = document.getElementById('wait'),
- href = document.getElementById('href').href;
- var interval = setInterval(function(){
- var time = --wait.innerHTML;
- if(time <= 0) {
- location.href = href;
- clearInterval(interval);
- };
- }, 1000);
- })();
- </script>
- </html>
|