refactor(ui): 替换CDN资源为本地文件并统一按钮样式
- 将Font Awesome从CDN引用改为本地文件/css/all.min.css - 为所有按钮添加图标以提升用户体验 - 修复登出弹窗的DOM加载问题 - 更新config.php中的数据库和SMTP配置
This commit is contained in:
@@ -95,6 +95,8 @@ if (!($conn instanceof mysqli)) {
|
||||
<title>开发者信息 - <?php echo APP_STORE_NAME; ?></title>
|
||||
<!-- Bootstrap CSS -->
|
||||
<link href="../css/bootstrap.min.css" rel="stylesheet">
|
||||
<!-- Font Awesome -->
|
||||
<link rel="stylesheet" href="/css/all.min.css">
|
||||
<!-- 自定义CSS -->
|
||||
<link rel="stylesheet" href="../styles.css">
|
||||
<style>
|
||||
@@ -193,7 +195,7 @@ if (!($conn instanceof mysqli)) {
|
||||
<label for="social_links">社交媒体链接 (多个链接用逗号分隔)</label>
|
||||
<input type="text" class="form-control" id="social_links" name="social_links" value="<?php echo htmlspecialchars($developer['social_links']); ?>" placeholder="请输入社交媒体链接,多个链接用逗号分隔">
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary">保存更改</button>
|
||||
<button type="submit" class="btn btn-primary"><i class="fas fa-save me-1"></i>保存更改</button>
|
||||
</form>
|
||||
</div>
|
||||
<script>
|
||||
|
||||
Reference in New Issue
Block a user