This commit is contained in:
Jackson Dou 2022-08-23 00:42:28 +08:00
parent 4803990aa6
commit 7a4beecbbd
6 changed files with 61 additions and 1 deletions

View file

@ -3,7 +3,7 @@
A simple Content Management System for Reseller of MyOwnFreeHost
* Official Site : [uiisc.com](http://uiisc.com "UIISC")
* Author : [doudoudzj](https://github.com/doudoudzj "doudoudzj")
* Author : [Jackson Dou](https://github.com/jksdou "jksdou")
## Functions

12
error/400.html Normal file
View file

@ -0,0 +1,12 @@
<!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.0">
<title>400 Bad Request</title>
</head>
<body>
400 Bad Request
</body>
</html>

12
error/401.html Normal file
View file

@ -0,0 +1,12 @@
<!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.0">
<title>401 Unauthorized</title>
</head>
<body>
401 Unauthorized
</body>
</html>

12
error/403.html Normal file
View file

@ -0,0 +1,12 @@
<!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.0">
<title>403 Forbidden</title>
</head>
<body>
403 Forbidden
</body>
</html>

12
error/404.html Normal file
View file

@ -0,0 +1,12 @@
<!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.0">
<title>404 页面不存在</title>
</head>
<body>
404 页面不存在
</body>
</html>

12
error/503.html Normal file
View file

@ -0,0 +1,12 @@
<!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.0">
<title>503 Service Unavailable</title>
</head>
<body>
503 Service Unavailable
</body>
</html>