68 lines
2.0 KiB
PHP
68 lines
2.0 KiB
PHP
<?php
|
|
require_once 'admin/config.php';
|
|
|
|
$error = '';
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
|
$username = $_POST['username'] ?? '';
|
|
$password = $_POST['password'] ?? '';
|
|
|
|
if ($username === ADMIN_USERNAME && $password === ADMIN_PASSWORD) {
|
|
$_SESSION['is_logged_in'] = true;
|
|
header('Location: admin.php');
|
|
exit;
|
|
} else {
|
|
$error = 'Invalid username or password.';
|
|
}
|
|
}
|
|
|
|
if (is_logged_in()) {
|
|
header('Location: admin.php');
|
|
exit;
|
|
}
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Login - Admin</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="icon" href="/assets/images/favicon.jpg" type="image/jpeg">
|
|
<style>
|
|
body {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
background-color: #f8f9fa;
|
|
}
|
|
.login-form {
|
|
width: 100%;
|
|
max-width: 400px;
|
|
padding: 15px;
|
|
margin: auto;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="login-form">
|
|
<h1 class="text-center mb-4">Admin Login</h1>
|
|
<?php if ($error): ?>
|
|
<div class="alert alert-danger"><?php echo $error; ?></div>
|
|
<?php endif; ?>
|
|
<form action="login.php" method="post">
|
|
<div class="form-floating mb-3">
|
|
<input type="text" class="form-control" id="username" name="username" placeholder="Username" required>
|
|
<label for="username">Username</label>
|
|
</div>
|
|
<div class="form-floating mb-3">
|
|
<input type="password" class="form-control" id="password" name="password" placeholder="Password" required>
|
|
<label for="password">Password</label>
|
|
</div>
|
|
<button class="w-100 btn btn-lg btn-primary" type="submit">Sign in</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|