项目完成服务器信息和配置文件;

This commit is contained in:
augushong
2019-08-22 13:17:44 +08:00
parent eb3b3908c2
commit 8b7b9d5805
186 changed files with 16555 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>{$msg}</title>
</head>
<body>
<h1>{$msg}</h1>
<h2> <span id="counting">3</span>秒后跳转 <a href="{$jump_to_url}">立即跳转</a></h2>
<script>
var counting = 3;
setInterval(() => {
if(counting == 1){
location.href = '{$jump_to_url}';
}
counting--
document.getElementById('counting').innerHTML = counting
}, 1000);
</script>
</body>
</html>