| 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/vendorset/Vendorapp/ |
Upload File : |
<?php
// Start the session
session_start();
// Check if the user is logged in as an admin
if (!isset($_SESSION['admin_logged_in']) || $_SESSION['admin_logged_in'] !== true) {
header("Location: admin_login.php"); // Redirect to login page if not logged in
exit();
}
// Include the database configuration
include 'config.php';
// 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);
}
// Handle delete request
if (isset($_GET['delete_id'])) {
$delete_id = $_GET['delete_id'];
$stmt = $conn->prepare("DELETE FROM admins WHERE id = ?");
$stmt->bind_param("i", $delete_id);
$stmt->execute();
$stmt->close();
header("Location: admin_manage.php"); // Redirect to refresh the page
exit();
}
// Fetch all admin users
$sql = "SELECT id, username FROM admins";
$result = $conn->query($sql);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Manage Admin Users</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Roboto', sans-serif;
background-color: #f5f5f5;
color: #333;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
min-height: 100vh;
}
.main-container {
background-color: #fff;
padding: 30px;
border-radius: 10px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
width: 80%;
max-width: 1200px;
margin-top: 30px;
}
h2 {
text-align: center;
color: #1E90FF;
margin-bottom: 20px;
}
.table-container {
margin-top: 20px;
}
table {
width: 100%;
border-collapse: collapse;
border-radius: 10px;
overflow: hidden;
}
th, td {
padding: 12px;
text-align: left;
font-size: 14px;
}
th {
background-color: #1E90FF;
color: white;
}
td {
background-color: #f9f9f9;
}
tr:nth-child(even) {
background-color: #f1f1f1;
}
tr:hover {
background-color: #e2e2e2;
}
.action-buttons {
display: flex;
gap: 10px;
}
.action-buttons a {
text-decoration: none;
padding: 8px 15px;
border-radius: 5px;
color: white;
font-size: 14px;
text-align: center;
}
.button-edit {
background-color: #1E90FF;
}
.button-edit:hover {
background-color: #1C86EE;
}
.button-delete {
background-color: #ff4d4d;
}
.button-delete:hover {
background-color: #e60000;
}
.button-primary {
display: inline-block;
padding: 10px 20px;
background-color: #1E90FF;
color: white;
text-decoration: none;
border-radius: 5px;
font-size: 14px;
font-weight: bold;
text-align: center;
transition: background-color 0.3s ease;
}
.button-primary:hover {
background-color: #1C86EE;
}
</style>
<script type="text/javascript">
function confirmDelete(url) {
var result = confirm("Are you sure you want to delete this admin?");
if (result) {
window.location.href = url;
}
}
</script>
</head>
<body>
<div class="main-container">
<h2>Manage Admin Users</h2>
<!-- Add Admin Button -->
<div style="display: flex; justify-content: flex-end; margin-bottom: 20px;">
<a href="../Vendorapp/admin/add_user.php" class="button-primary">Add New Admin</a>
</div>
<!-- Admin Users Table -->
<div class="table-container">
<table>
<thead>
<tr>
<th>Username</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<?php
if ($result->num_rows > 0) {
while ($row = $result->fetch_assoc()) {
echo "<tr>";
echo "<td>" . htmlspecialchars($row['username']) . "</td>";
echo "<td class='action-buttons'>
<a href='admin_edit.php?id=" . $row['id'] . "' class='button-edit'>Edit</a>
<a href='javascript:void(0);' onclick='confirmDelete(\"admin_manage.php?delete_id=" . $row['id'] . "\")' class='button-delete'>Delete</a>
</td>";
echo "</tr>";
}
} else {
echo "<tr><td colspan='2'>No admin users found.</td></tr>";
}
?>
</tbody>
</table>
</div>
</div>
</body>
</html>
<?php
// Close the database connection
$conn->close();
?>