319 lines
12 KiB
PHP
319 lines
12 KiB
PHP
<?php include '../src/session_check.php';
|
|
checkUserRole(['admin']);
|
|
?>
|
|
|
|
<html lang="en" data-bs-theme="dark">
|
|
<head>
|
|
<!-- Required meta tags -->
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<!--favicon-->
|
|
<link rel="icon" href="../assets/images/favicon-32x32.png" type="image/png">
|
|
<!--plugins-->
|
|
<link href="../assets/plugins/vectormap/jquery-jvectormap-2.0.2.css" rel="stylesheet">
|
|
<link href="../assets/plugins/simplebar/css/simplebar.css" rel="stylesheet">
|
|
<link href="../assets/plugins/perfect-scrollbar/css/perfect-scrollbar.css" rel="stylesheet">
|
|
<link href="../assets/plugins/metismenu/css/metisMenu.min.css" rel="stylesheet">
|
|
<!-- loader-->
|
|
<link href="../assets/css/pace.min.css" rel="stylesheet"/>
|
|
<script src="../assets/js/pace.min.js"></script>
|
|
<!-- Bootstrap CSS -->
|
|
<link href="../assets/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="../assets/css/bootstrap-extended.css" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap" rel="stylesheet">
|
|
|
|
<link href="../assets/sass/app.css" rel="stylesheet">
|
|
<link href="../assets/css/icons.css" rel="stylesheet">
|
|
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
|
|
<!-- Theme Style CSS -->
|
|
<link rel="stylesheet" href="../assets/sass/dark-theme.css">
|
|
<link rel="stylesheet" href="../assets/sass/semi-dark.css">
|
|
<link rel="stylesheet" href="../assets/sass/bordered-theme.css">
|
|
|
|
<title>TOD Dashboard</title>
|
|
</head>
|
|
|
|
<body>
|
|
<!--wrapper-->
|
|
<div class="wrapper">
|
|
<!--sidebar wrapper -->
|
|
<?php include '../src/nav.php'; ?>
|
|
<!--end sidebar wrapper -->
|
|
<!--start header -->
|
|
<?php include '../src/header.php'; ?>
|
|
<!--end header -->
|
|
|
|
<!--start page wrapper -->
|
|
<div class="page-wrapper">
|
|
<div class="page-content">
|
|
<!--start page content -->
|
|
|
|
|
|
|
|
|
|
<div class="container mt-4">
|
|
<h2 class="text-center mb-4">User Management</h2>
|
|
|
|
<div class="d-flex justify-content-between mb-3">
|
|
<button class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#createUserModal">
|
|
<i class="fas fa-user-plus"></i> Create New User
|
|
</button>
|
|
</div>
|
|
|
|
<div class="table-responsive">
|
|
<table class="table table-striped table-hover table-bordered align-middle">
|
|
<thead class="table-dark">
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Username</th>
|
|
<th>Email</th>
|
|
<th>Role</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="userTableBody">
|
|
<!-- Rows dynamically populated -->
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<!-- Create User Modal -->
|
|
<div class="modal fade" id="createUserModal" tabindex="-1" aria-labelledby="createUserModalLabel" aria-hidden="true">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title" id="createUserModalLabel">Create New User</h5>
|
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<form id="createUserForm">
|
|
<div class="mb-3">
|
|
<label for="username" class="form-label">Username</label>
|
|
<input type="text" class="form-control" id="username" required>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="email" class="form-label">Email</label>
|
|
<input type="email" class="form-control" id="email" required>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="role" class="form-label">Role</label>
|
|
<select id="role" class="form-select" required>
|
|
<option value="">Select Role</option>
|
|
<option value="admin">Admin</option>
|
|
<option value="user">User</option>
|
|
</select>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="password" class="form-label">Password</label>
|
|
<input type="password" class="form-control" id="password" required>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary w-100">Create User</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Reset Password Modal -->
|
|
<div class="modal fade" id="resetPasswordModal" tabindex="-1" aria-labelledby="resetPasswordModalLabel" aria-hidden="true">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title" id="resetPasswordModalLabel">Reset Password</h5>
|
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<form id="resetPasswordForm">
|
|
<p>Enter a new password for <span id="resetUserName"></span>:</p>
|
|
<div class="mb-3">
|
|
<label for="newPassword" class="form-label">New Password</label>
|
|
<input type="password" class="form-control" id="newPassword" required>
|
|
</div>
|
|
<button type="submit" class="btn btn-warning w-100">Reset Password</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!--end page content -->
|
|
</div>
|
|
</div>
|
|
<!--end page wrapper -->
|
|
|
|
<!--start overlay-->
|
|
<div class="overlay mobile-toggle-icon"></div>
|
|
<!--end overlay-->
|
|
<!--Start Back To Top Button-->
|
|
<a href="javaScript:;" class="back-to-top"><i class='bx bxs-up-arrow-alt'></i></a>
|
|
<!--End Back To Top Button-->
|
|
<footer class="page-footer">
|
|
<p class="mb-0">Copyright © 2024. All right reserved.</p>
|
|
</footer>
|
|
</div>
|
|
<!--end wrapper-->
|
|
|
|
|
|
<!-- search modal -->
|
|
<div class="modal" id="SearchModal" tabindex="-1">
|
|
<div class="modal-dialog modal-dialog-centered modal-dialog-scrollable modal-fullscreen-md-down">
|
|
<div class="modal-content">
|
|
<div class="modal-header gap-2">
|
|
<div class="position-relative popup-search w-100">
|
|
<input class="form-control form-control-lg ps-5 border border-3 border-primary" type="search" placeholder="Search">
|
|
<span class="position-absolute top-50 search-show ms-3 translate-middle-y start-0 top-50 fs-4"><i class='bx bx-search'></i></span>
|
|
</div>
|
|
<button type="button" class="btn-close d-md-none" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- end search modal -->
|
|
|
|
<!-- Bootstrap JS -->
|
|
<script src="../assets/js/bootstrap.bundle.min.js"></script>
|
|
<!--plugins-->
|
|
<script src="../assets/js/jquery.min.js"></script>
|
|
<script src="../assets/plugins/simplebar/js/simplebar.min.js"></script>
|
|
<script src="../assets/plugins/metismenu/js/metisMenu.min.js"></script>
|
|
<script src="../assets/plugins/perfect-scrollbar/js/perfect-scrollbar.js"></script>
|
|
<script src="../assets/plugins/apexcharts-bundle/js/apexcharts.min.js"></script>
|
|
<!--app JS-->
|
|
<script src="../assets/js/app.js"></script>
|
|
|
|
<script src="../assets/js/index.js"></script>
|
|
<script src="../assets/plugins/peity/jquery.peity.min.js"></script>
|
|
<script>
|
|
$(".data-attributes span").peity("donut")
|
|
</script>
|
|
|
|
<script>
|
|
$(document).ready(function () {
|
|
const apiUrl = '../src/userMananagementService.php';
|
|
|
|
// Load users on page load
|
|
fetchUsers();
|
|
|
|
// Create new user form submission
|
|
$('#createUserForm').submit(function (e) {
|
|
e.preventDefault();
|
|
const username = $('#username').val();
|
|
const email = $('#email').val();
|
|
const role = $('#role').val();
|
|
const password = $('#password').val();
|
|
|
|
$.ajax({
|
|
url: apiUrl,
|
|
method: 'POST',
|
|
dataType: 'json',
|
|
data: JSON.stringify({ username, email, role, password }),
|
|
contentType: 'application/json',
|
|
success: function () {
|
|
alert('User created successfully!');
|
|
fetchUsers();
|
|
$('#createUserModal').modal('hide');
|
|
$('#createUserForm')[0].reset();
|
|
},
|
|
error: function (xhr) {
|
|
alert('Error creating user: ' + xhr.responseText);
|
|
},
|
|
});
|
|
});
|
|
|
|
// Reset password form submission
|
|
$('#resetPasswordForm').submit(function (e) {
|
|
e.preventDefault();
|
|
const userId = $('#resetPasswordModal').data('userId');
|
|
const password = $('#newPassword').val();
|
|
|
|
$.ajax({
|
|
url: `${apiUrl}?reset-password=${userId}`,
|
|
method: 'POST',
|
|
dataType: 'json',
|
|
data: JSON.stringify({ password }),
|
|
contentType: 'application/json',
|
|
success: function () {
|
|
alert('Password reset successfully!');
|
|
$('#resetPasswordModal').modal('hide');
|
|
$('#resetPasswordForm')[0].reset();
|
|
},
|
|
error: function (xhr) {
|
|
alert('Error resetting password: ' + xhr.responseText);
|
|
},
|
|
});
|
|
});
|
|
});
|
|
|
|
// Fetch users from the backend
|
|
function fetchUsers() {
|
|
const apiUrl = '../src/userMananagementService.php';
|
|
|
|
$.ajax({
|
|
url: apiUrl,
|
|
method: 'GET',
|
|
dataType: 'json',
|
|
success: function (users) {
|
|
const tableBody = $('#userTableBody');
|
|
tableBody.empty();
|
|
|
|
users.forEach(function (user) {
|
|
const row = `
|
|
<tr>
|
|
<td>${user.id}</td>
|
|
<td>${user.username}</td>
|
|
<td>${user.email}</td>
|
|
<td>${user.role}</td>
|
|
<td>
|
|
<button class="btn btn-warning btn-sm" onclick="openResetPasswordModal(${user.id}, '${user.username}')">
|
|
<i class="fas fa-key"></i> Reset Password
|
|
</button>
|
|
<button class="btn btn-danger btn-sm" onclick="deleteUser(${user.id})">
|
|
<i class="fas fa-trash"></i> Delete
|
|
</button>
|
|
</td>
|
|
</tr>
|
|
`;
|
|
tableBody.append(row);
|
|
});
|
|
},
|
|
error: function (xhr) {
|
|
alert('Error fetching users: ' + xhr.responseText);
|
|
},
|
|
});
|
|
}
|
|
|
|
// Open the reset password modal
|
|
function openResetPasswordModal(userId, username) {
|
|
$('#resetPasswordModal').data('userId', userId);
|
|
$('#resetUserName').text(username);
|
|
$('#resetPasswordModal').modal('show');
|
|
}
|
|
|
|
// Delete user
|
|
function deleteUser(userId) {
|
|
const apiUrl = '../src/userMananagementService.php';
|
|
|
|
if (confirm('Are you sure you want to delete this user?')) {
|
|
$.ajax({
|
|
url: `${apiUrl}?delete-user=${userId}`,
|
|
method: 'POST',
|
|
success: function () {
|
|
alert('User deleted successfully!');
|
|
fetchUsers();
|
|
},
|
|
error: function (xhr) {
|
|
alert('Error deleting user: ' + xhr.responseText);
|
|
},
|
|
});
|
|
}
|
|
}
|
|
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|