| Server IP : 173.209.174.21 / Your IP : 216.73.216.89 Web Server : Apache/2.4.58 (Ubuntu) System : Linux wcfs-server 6.8.0-124-generic #124-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 13:00:45 UTC 2026 x86_64 User : nodor ( 1000) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/thelittlebigshow/vendor-reg/ |
Upload File : |
<?php
// Enable error reporting to display errors in development
ini_set('display_errors', 1);
error_reporting(E_ALL);
// Start the session to manage login status
session_start();
// Check if already logged in, redirect to dashboard
if (isset($_SESSION['admin_logged_in']) && $_SESSION['admin_logged_in'] === true) {
header("Location: admin_dashboard.php"); // Redirect to admin dashboard if already logged in
exit();
}
// If the form is submitted, validate the credentials
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
// Capture the username and password
$admin_username = $_POST['username'];
$admin_password = $_POST['password'];
// Include the database configuration
include 'config.php'; // Your DB configuration
// Establish a database connection
$conn = new mysqli(DB_HOST, DB_USER, DB_PASS, DB_NAME);
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
// Query to get admin credentials from the database
$sql = "SELECT id, username, password FROM admin WHERE username = ?";
$stmt = $conn->prepare($sql);
if (!$stmt) {
echo "Error preparing statement: " . $conn->error;
}
$stmt->bind_param("s", $admin_username);
$stmt->execute();
$stmt->store_result();
// If the user exists
if ($stmt->num_rows > 0) {
$stmt->bind_result($id, $username, $hashed_password);
$stmt->fetch();
// Verify the password (assuming hashed password stored in database)
if (password_verify($admin_password, $hashed_password)) {
// Password is correct, log the admin in
$_SESSION['admin_logged_in'] = true;
$_SESSION['admin_username'] = $username;
header("Location: admin_dashboard.php"); // Redirect to dashboard
exit();
} else {
$error_message = "Invalid username or password.";
}
} else {
$error_message = "Invalid username or password.";
}
$stmt->close();
$conn->close();
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Admin Login</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
padding: 50px;
text-align: center;
}
.login-container {
background-color: #fff;
padding: 30px;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
width: 300px;
margin: 0 auto;
}
h2 {
color: #1E90FF;
}
input {
padding: 10px;
margin: 10px 0;
width: 100%;
border-radius: 4px;
border: 1px solid #ccc;
}
button {
padding: 10px;
background-color: #1E90FF;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
width: 100%;
}
button:hover {
background-color: #1C86EE;
}
.error-message {
color: red;
margin-top: 10px;
}
</style>
</head>
<body>
<div class="login-container">
<h2>Admin Login</h2>
<form action="admin_login.php" method="POST">
<input type="text" name="username" placeholder="Username" required>
<input type="password" name="password" placeholder="Password" required>
<button type="submit">Login</button>
</form>
<?php
// Display error message if login fails
if (isset($error_message)) {
echo "<p class='error-message'>$error_message</p>";
}
?>
</div>
</body>
</html>