52 lines
1.9 KiB
PHP
52 lines
1.9 KiB
PHP
<?php
|
|
session_start();
|
|
|
|
// Redirect to login if user is not logged in or not a teacher
|
|
if (!isset($_SESSION['user_id']) || $_SESSION['role'] !== 'guru') {
|
|
header("Location: login.php?role=guru");
|
|
exit();
|
|
}
|
|
|
|
$page_title = "Dashboard Guru";
|
|
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="id">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title><?php echo $page_title; ?> - Ulangan Harian Online</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
</head>
|
|
<body>
|
|
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="#">Dashboard Guru</a>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarNav">
|
|
<ul class="navbar-nav ms-auto">
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="logout.php">Logout</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<div class="container mt-4">
|
|
<h1>Selamat datang, <?php echo htmlspecialchars($_SESSION['full_name']); ?>!</h1>
|
|
<p>Ini adalah halaman dasbor Anda.</p>
|
|
|
|
<div class="mt-5">
|
|
<h2>Manajemen Ujian</h2>
|
|
<p>Di sini Anda dapat membuat, mengedit, dan melihat hasil ujian.</p>
|
|
<a href="create_exam.php" class="btn btn-primary">Buat Ujian Baru</a>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html>
|