35132-vm/faculty_attendance.php
Flatlogic Bot fd73082fc6 v3
2025-10-23 09:12:51 +00:00

44 lines
1.6 KiB
PHP

<?php require_once 'includes/header.php'; ?>
<div class="container page-content" id="faculty-attendance-page">
<div class="row mb-4">
<div class="col-12">
<h1 class="mb-4">Faculty Attendance Dashboard</h1>
<p>Select a course to view student attendance records.</p>
</div>
</div>
<div class="row mb-4">
<div class="col-md-6">
<label for="faculty-course-select" class="form-label"><strong>Select Course:</strong></label>
<select id="faculty-course-select" class="form-select">
<option value="">-- Please select a course --</option>
<!-- Options will be loaded by JavaScript -->
</select>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="table-responsive">
<table class="table table-striped table-hover">
<thead class="table-dark">
<tr>
<th>Student ID</th>
<th>Check-in Time</th>
<th>Status</th>
<th>Selfie</th>
<th>Location (Lat, Lng)</th>
</tr>
</thead>
<tbody id="faculty-attendance-body">
<tr><td colspan="5" class="text-center">Please select a course to view records.</td></tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<?php require_once 'includes/footer.php'; ?>