117 lines
4.3 KiB
PHP
Executable File
117 lines
4.3 KiB
PHP
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>RFID Scan Log and Data</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<!-- Favicon -->
|
|
<link rel="icon" href="<?= base_url('assets/images/favicon.ico') ?>">
|
|
<link rel="stylesheet" href="<?= base_url('assets/css/management.css') ?>">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<h1>RFID Scan Log</h1>
|
|
|
|
<!-- Display Success or Error Messages -->
|
|
<?php if (session()->getFlashdata('message')): ?>
|
|
<div class="alert alert-success">
|
|
<?= session()->getFlashdata('message') ?>
|
|
</div>
|
|
<?php elseif (session()->getFlashdata('error')): ?>
|
|
<div class="alert alert-danger">
|
|
<?= session()->getFlashdata('error') ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<!-- RFID Scan Log Table -->
|
|
<table class="table table-bordered table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>User Name</th>
|
|
<th>Student Name</th>
|
|
<th>Card ID</th>
|
|
<th>Scan Time</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php if (!empty($logs) && is_array($logs)): ?>
|
|
<?php foreach ($logs as $log): ?>
|
|
<tr>
|
|
<td><?= esc($log->user_firstname . ' ' . $log->user_lastname) ?></td>
|
|
<td><?= esc($log->student_firstname . ' ' . $log->student_lastname) ?></td>
|
|
<td><?= esc($log->card_id) ?></td>
|
|
<td><?= esc($log->scan_time) ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
<?php else: ?>
|
|
<tr>
|
|
<td colspan="4" class="text-center">No scans found</td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
</tbody>
|
|
</table>
|
|
|
|
<!-- Optional: Display All Users (If Needed) -->
|
|
<h2>User List</h2>
|
|
<table class="table table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th>First Name</th>
|
|
<th>Last Name</th>
|
|
<th>Email</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php if (!empty($users) && is_array($users)): ?>
|
|
<?php foreach ($users as $user): ?>
|
|
<tr>
|
|
<td><?= esc($user['firstname']) ?></td>
|
|
<td><?= esc($user['lastname']) ?></td>
|
|
<td><?= esc($user['email']) ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
<?php else: ?>
|
|
<tr>
|
|
<td colspan="3" class="text-center">No users found</td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
</tbody>
|
|
</table>
|
|
|
|
<!-- Optional: Display All Students (If Needed) -->
|
|
<h2>Student List</h2>
|
|
<table class="table table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th>First Name</th>
|
|
<th>Last Name</th>
|
|
<th>RFID Tag</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php if (!empty($students) && is_array($students)): ?>
|
|
<?php foreach ($students as $student): ?>
|
|
<tr>
|
|
<td><?= esc($student['firstname']) ?></td>
|
|
<td><?= esc($student['lastname']) ?></td>
|
|
<td><?= esc($student['rfid_tag']) ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
<?php else: ?>
|
|
<tr>
|
|
<td colspan="3" class="text-center">No students found</td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
|
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
|
|
</html>
|