28 lines
959 B
PHP
28 lines
959 B
PHP
<?php require_once 'includes/header.php'; ?>
|
|
|
|
<div class="container page-content">
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<h1 class="mb-4">My Attendance History</h1>
|
|
<p>Here is a record of your past check-ins.</p>
|
|
<div class="table-responsive">
|
|
<table class="table table-striped table-hover">
|
|
<thead class="table-dark">
|
|
<tr>
|
|
<th>Course</th>
|
|
<th>Check-in Time</th>
|
|
<th>Status</th>
|
|
<th>Selfie</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="attendance-history-body">
|
|
<!-- History will be loaded here by JavaScript -->
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php require_once 'includes/footer.php'; ?>
|