mirror of
https://gitee.com/EMF/solon-manager.git
synced 2025-12-06 08:48:33 +08:00
29 lines
961 B
HTML
29 lines
961 B
HTML
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="UTF-8">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
<title>系统错误 (500)</title>
|
|
<style type="text/css">
|
|
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
|
div.dialog {
|
|
width: 80%;
|
|
padding: 1em 4em;
|
|
margin: 4em auto 0 auto;
|
|
border: 1px solid #ccc;
|
|
border-right-color: #999;
|
|
border-bottom-color: #999;
|
|
}
|
|
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="dialog">
|
|
<h1>系统错误</h1>
|
|
<p>抱歉!您的操作出现异常,请稍后重试或联系管理员。</p>
|
|
<p><a href="javascript:;" onclick="history.back(); return false;">返回上一页</a></p>
|
|
</div>
|
|
</body>
|
|
</html>
|