22 lines
613 B
PHP
22 lines
613 B
PHP
<?php
|
|
require_once __DIR__ . '/../../templates/header.php';
|
|
require_once __DIR__ . '/../../includes/functions.php';
|
|
|
|
check_auth(['guru']);
|
|
|
|
require_once __DIR__ . '/../../templates/navbar.php';
|
|
?>
|
|
|
|
<div class="container mt-4">
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<h3>Review Izin Siswa</h3>
|
|
</div>
|
|
<div class="card-body">
|
|
<p>Halaman ini akan menampilkan daftar izin yang perlu direview oleh guru.</p>
|
|
<!-- Izin table for review will be here -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php require_once __DIR__ . '/../../templates/footer.php'; ?>
|