This commit is contained in:
MeSHard
2025-11-14 17:34:39 +08:00
commit ca6f1086b0
18 changed files with 3297 additions and 0 deletions

71
background/index.html Normal file
View File

@@ -0,0 +1,71 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>企业设置管理系统</title>
<meta http-equiv="refresh" content="0; url=login.html">
<style>
body {
font-family: 'Noto Sans SC', sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
margin: 0;
padding: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
color: white;
}
.loading-container {
text-align: center;
}
.spinner {
width: 50px;
height: 50px;
border: 3px solid rgba(255, 255, 255, 0.3);
border-top: 3px solid white;
border-radius: 50%;
animation: spin 1s linear infinite;
margin: 0 auto 20px;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.loading-text {
font-size: 18px;
margin-bottom: 10px;
}
.loading-subtitle {
font-size: 14px;
opacity: 0.8;
}
</style>
</head>
<body>
<div class="loading-container">
<div class="spinner"></div>
<div class="loading-text">企业设置管理系统</div>
<div class="loading-subtitle">正在加载登录页面...</div>
<div style="margin-top: 30px;">
<p style="font-size: 12px; opacity: 0.6;">
如果页面没有自动跳转,请<a href="login.html" style="color: #4A90E2; text-decoration: none;">点击这里</a>
</p>
</div>
</div>
<script>
// 确保在3秒后强制跳转
setTimeout(function() {
window.location.href = 'login.html';
}, 3000);
</script>
</body>
</html>