You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.4 KiB
33 lines
1.4 KiB
<?php $config=config('view_replace_str');?>
|
|
<!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><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
|
|
<title>{:lang('error')}</title>
|
|
<link type="text/css" rel="stylesheet" href="<?php echo $config['__PUBLIC__']; ?>jump_style/base.css">
|
|
<link type="text/css" rel="stylesheet" href="<?php echo $config['__PUBLIC__']; ?>jump_style/global.css">
|
|
<link type="text/css" rel="stylesheet" href="<?php echo $config['__PUBLIC__']; ?>jump_style/404.css">
|
|
</head>
|
|
<body>
|
|
<div class="wrap">
|
|
<div class="errors">
|
|
<div class="text">
|
|
<h4>{:lang('reason')}</h4>
|
|
<h4><?php echo (is_array($msg))?implode("|",$msg):$msg;; ?>!</h4>
|
|
<p>SZCAEE:{:lang('automatically')} <a id="href" href="<?php echo($url); ?>">{:lang('jump')}</a> {:lang('wait second')} <b id="wait"><?php echo($wait); ?></b></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<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>
|
|
</body></html>
|