first commit

This commit is contained in:
2024-04-01 10:06:50 +08:00
commit 748a0b6c8f
1977 changed files with 138027 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<title>猫眼后台管理系统主页</title>
<#include "../common/header.ftl"/>
<style>
body{
background-color: #fff;
}
.error-page {
height: 100%;
position: fixed;
width: 100%;
}
.error-body {
padding-top: 5%;
}
.error-body h1 {
font-size: 110px;
font-weight: 700;
text-shadow: 4px 4px 0 #f5f6fa, 6px 6px 0 #33cabb;
line-height: 210px;
color: #33cabb;
}
.error-body h4 {
margin: 30px 0px;
}
</style>
</head>
<body>
<section class="error-page">
<div class="error-box">
<div class="error-body text-center">
<h1>无权限</h1>
<h4>很抱歉,您所属的角色无该权限。</h4>
<a href="/system/index" class="btn btn-primary ">返回首页</a>
</div>
</div>
</section>
<#include "../common/footer.ftl"/>
<script type="text/javascript">
$(document).ready(function(){
});
</script>
</body>
</html>