-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path401.html
26 lines (25 loc) · 1.06 KB
/
401.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>401</title>
<link type="text/css" rel="stylesheet" href="css/reset-min.css">
<link type="text/css" rel="stylesheet" href="css/base-min.css">
<link href="css/manage.css" rel="stylesheet" />
<script src="js/libs/jquery.js" type="text/javascript"></script>
<script src="js/libs/jQuery.Cookie.js" type="text/javascript"></script>
</head>
<body style="background-color: #292929;">
<div class="er-page">
<img class="er-img" src="images/manage/404.png" />
<span class="er-prompt er-font">哇哦,你访问的页面找不到了!</span>
<span class="er-return er-font"><img class="js-return" style="cursor: pointer;" src="images/taskmanage/fff.png" />返回首页</span>
</div>
<script>
$.Cookie('sid', null, { path: "/" });
document.querySelector('.js-return').onclick = function () {
location.href = 'myspace.html';
};
</script>
</body>
</html>