refactor(ui): 替换CDN资源为本地文件并统一按钮样式
- 将Font Awesome从CDN引用改为本地文件/css/all.min.css - 为所有按钮添加图标以提升用户体验 - 修复登出弹窗的DOM加载问题 - 更新config.php中的数据库和SMTP配置
This commit is contained in:
@@ -104,6 +104,8 @@ if (!($conn instanceof mysqli)) {
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>开发者登录</title>
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||
<!-- Font Awesome -->
|
||||
<link rel="stylesheet" href="/css/all.min.css">
|
||||
<style>
|
||||
body {
|
||||
background-color: #f4f4f4;
|
||||
@@ -148,7 +150,7 @@ if (!($conn instanceof mysqli)) {
|
||||
自动登录
|
||||
</label>
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary w-100">登录</button>
|
||||
<button type="submit" class="btn btn-primary w-100"><i class="fas fa-user me-1"></i>登录</button>
|
||||
</form>
|
||||
<div class="text-center mt-3">
|
||||
还没有账号?<a href="register.php" class="text-decoration-none">注册</a>
|
||||
|
||||
Reference in New Issue
Block a user