98 lines
3.8 KiB
PHP
98 lines
3.8 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
session_start();
|
|
require_once __DIR__ . '/db/config.php';
|
|
|
|
if (isset($_SESSION['user_id'])) {
|
|
if (($_SESSION['role'] ?? 'user') === 'admin') {
|
|
header('Location: admin.php');
|
|
} else {
|
|
header('Location: index.php');
|
|
}
|
|
exit;
|
|
}
|
|
|
|
$error = '';
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
|
$username = $_POST['username'] ?? '';
|
|
$password = $_POST['password'] ?? '';
|
|
|
|
if ($username && $password) {
|
|
$pdo = db();
|
|
$stmt = $pdo->prepare("SELECT * FROM users WHERE username = ? OR email = ?");
|
|
$stmt->execute([$username, $username]); // Allow login with username or email
|
|
$user = $stmt->fetch();
|
|
|
|
if ($user && password_verify($password, $user['password'])) {
|
|
$_SESSION['user_id'] = $user['id'];
|
|
$_SESSION['username'] = $user['username'];
|
|
$_SESSION['role'] = $user['role'] ?? 'user';
|
|
|
|
if ($_SESSION['role'] === 'admin') {
|
|
header('Location: admin.php');
|
|
} else {
|
|
header('Location: index.php');
|
|
}
|
|
exit;
|
|
} else {
|
|
$error = "Invalid credentials.";
|
|
}
|
|
} else {
|
|
$error = "Please fill in all fields.";
|
|
}
|
|
}
|
|
?>
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Login - TikTok Live AI</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?= time() ?>">
|
|
<style>
|
|
body { font-family: 'Inter', sans-serif; background-color: #0f0f0f; color: #fff; height: 100vh; display: flex; align-items: center; justify-content: center; }
|
|
.card-login { background-color: #1a1a1a; border: 1px solid #333; border-radius: 12px; width: 100%; max-width: 400px; }
|
|
.form-control { background-color: #262626; border-color: #444; color: #fff; }
|
|
.form-control:focus { background-color: #2d2d2d; border-color: #00f2ea; color: #fff; box-shadow: 0 0 0 0.25rem rgba(0, 242, 234, 0.25); }
|
|
.btn-login { background-color: #00f2ea; color: #000; font-weight: 700; border-radius: 8px; border: none; padding: 12px; }
|
|
.btn-login:hover { background-color: #00d8d1; color: #000; }
|
|
.text-tiktok-cyan { color: #00f2ea; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="card-login p-4 shadow-lg">
|
|
<div class="text-center mb-4">
|
|
<h3 class="fw-bold"><span class="text-tiktok-cyan">TikTok</span> AI Login</h3>
|
|
<p class="text-secondary small">Please login to continue</p>
|
|
</div>
|
|
|
|
<?php if ($error): ?>
|
|
<div class="alert alert-danger bg-dark text-danger border-danger py-2 small"><?= $error ?></div>
|
|
<?php endif; ?>
|
|
|
|
<form method="POST">
|
|
<div class="mb-3">
|
|
<label for="username" class="form-label small text-secondary">Username or Email</label>
|
|
<input type="text" name="username" id="username" class="form-control" required autofocus>
|
|
</div>
|
|
<div class="mb-4">
|
|
<label for="password" class="form-label small text-secondary">Password</label>
|
|
<input type="password" name="password" id="password" class="form-control" required>
|
|
</div>
|
|
<div class="d-grid">
|
|
<button type="submit" class="btn btn-login">Login</button>
|
|
</div>
|
|
</form>
|
|
|
|
<div class="text-center mt-4">
|
|
<p class="small text-secondary">Don't have an account? <a href="register.php" class="text-tiktok-cyan text-decoration-none">Register here</a></p>
|
|
<a href="/" class="text-secondary small text-decoration-none">← Back to Site</a>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|