32 lines
750 B
PHP
32 lines
750 B
PHP
<?php
|
|
session_start();
|
|
|
|
if (!isset($_SESSION['user_id'])) {
|
|
//header('Location: login.php');
|
|
//exit();
|
|
}
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Activities</title>
|
|
<link rel="stylesheet" href="assets/css/custom.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Activities</h1>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="teacher_dashboard.php">Dashboard</a></li>
|
|
<li><a href="logout.php">Logout</a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
<main>
|
|
<h2>Activity Management</h2>
|
|
<p>This page will contain student activity information.</p>
|
|
</main>
|
|
</body>
|
|
</html>
|