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.
26 lines
693 B
26 lines
693 B
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<title>页面未找到</title>
|
|
<!-- layout.css -->
|
|
<link rel="stylesheet" type="text/css" href="/error-page/src/css/error.css"/>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="error-box error-box-404">
|
|
<div class="error-box-inner">
|
|
<div class="error-back-img"><img src="/error-page/src/images/404error.png"></div>
|
|
<div class="error-back-home" onclick="gotohome()">返回首页</div>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
function gotohome() {
|
|
window.location.href = "/";
|
|
}
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|
|
|