This repository was archived by the owner on Jan 17, 2018. It is now read-only.
forked from eva990417744/message
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.html
More file actions
35 lines (35 loc) · 1.39 KB
/
error.html
File metadata and controls
35 lines (35 loc) · 1.39 KB
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
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>Error</title>
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="css/app.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
</head>
<body>
<div class="row" id="false">
<div class="col-sm-6 col-md-4 col-sm-offset-3 col-md-offset-4">
<div class="thumbnail">
<img src="assets/error.jpg" alt="忍住眼泪.jpg" class="img-responsive">
<div class="caption">
<h1 align="center">出错啦 Orz~<sub>∴</sub></h1>
<p align="center">这有可能是Sola的锅或者我的锅,反正不是刘越的锅</p>
<p align="center" id="errCode"></p>
</div>
</div>
</div>
</div>
<p align="center" class="error"><span
class="glyphicon glyphicon-info-sign"></span></p>
<p align="center" class="error">电子科技大学中山学院网络维护科</p>
<p align="center" class="error">@SumergiBi , LiuYue and Sola Background by Sola</p>
</body>
<script>
var err = new RegExp('err=(\\d+)').exec(window.location.href);
err = err && err[1];
err = err || 'unknown';
document.querySelector('#errCode').innerHTML = '错误代码 ' + err;
</script>
</html>