38239-vm/admin_login.php
Flatlogic Bot f1fc7be962 BIT
2026-02-07 06:05:18 +00:00

56 lines
1.9 KiB
PHP

<?php
include_once 'config.php';
if (isset($_SESSION['admin_id'])) {
header("Location: admin.php");
exit;
}
$error = "";
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
$username = $_POST['username'] ?? '';
$password = $_POST['password'] ?? '';
$stmt = db()->prepare("SELECT * FROM admins WHERE username = ?");
$stmt->execute([$username]);
$admin = $stmt->fetch();
if ($admin && password_verify($password, $admin['password'])) {
$_SESSION['admin_id'] = $admin['id'];
header("Location: admin.php");
exit;
} else {
$error = "用户名或密码错误";
}
}
?>
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>管理员登录</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body { background: #121212; color: white; display: flex; align-items: center; justify-content: center; height: 100vh; }
.login-card { background: #1e1e1e; padding: 2rem; border-radius: 1rem; width: 100%; max-width: 400px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
</style>
</head>
<body>
<div class="login-card">
<h3 class="text-center mb-4 text-warning">后台管理系统</h3>
<?php if($error): ?><div class="alert alert-danger"><?php echo $error; ?></div><?php endif; ?>
<form method="POST">
<div class="mb-3">
<label class="form-label">用户名</label>
<input type="text" name="username" class="form-control bg-dark text-white border-secondary" required>
</div>
<div class="mb-3">
<label class="form-label">密码</label>
<input type="password" name="password" class="form-control bg-dark text-white border-secondary" required>
</div>
<button type="submit" class="btn btn-warning w-100 fw-bold py-2">登录</button>
</form>
</div>
</body>
</html>