fix: 修复配置文件和添加缺失的样式表引用

修复config.php中的数据库和SMTP密码配置
在system_info.php和manage_tags.php中添加缺失的styles.css引用
This commit is contained in:
2025-07-15 19:31:02 +08:00
parent b56ee6cd97
commit 387583d14d
2 changed files with 2 additions and 0 deletions

View File

@@ -60,6 +60,7 @@ $tagsResult = $conn->query("SELECT * FROM tags ORDER BY created_at DESC");
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>标签管理 - 应用商店后台</title>
<link href="../css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="../styles.css">
</head>
<body>
<div class="container mt-5">

View File

@@ -97,6 +97,7 @@
<title>系统信息 - 上传文件列表</title>
<!-- Bootstrap CSS -->
<link href="../css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="../styles.css">
<!-- 自定义CSS -->
<link rel="stylesheet" href="../styles.css">
</head>