-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmentor-dashboard.php
executable file
·69 lines (63 loc) · 2.49 KB
/
mentor-dashboard.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
include('php/connect.php');
session_start();
if (!isset($_SESSION['username']) || $_SESSION['role'] != 'mentor') {
header("Location: login.php"); // Redirect to login if not logged in or not a mentor
exit();
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TeenZee Mentor Dashboard</title>
<link rel="stylesheet" href="style/style.css"> <!-- Link your CSS here -->
</head>
<body>
<header>
<h1>Welcome to TeenZee, <span><?php echo $_SESSION['username']; ?></span> (Mentor)</h1>
</header>
<nav>
<ul>
<li><a href="mentor-dashboard.php">Dashboard</a></li>
<li><a href="profile.php">Profile</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a href="logout.php">Logout</a></li>
</ul>
</nav>
<main>
<section class="dashboard">
<h2>Mentor Dashboard</h2>
<p>Welcome to the mentor area of TeenZee! Here, you can manage your sessions, provide guidance, and access tools to support your students.</p>
<div class="dashboard-cards">
<div class="card">
<h3>My Students</h3>
<p>View and manage the students you're mentoring.</p>
<a href="#">View Students</a>
</div>
<div class="card">
<h3>Schedule Sessions</h3>
<p>Schedule upcoming mentorship sessions with students.</p>
<a href="#">Schedule a Session</a>
</div>
<div class="card">
<h3>Resources</h3>
<p>Access useful resources for guiding students.</p>
<a href="#">View Resources</a>
</div>
</div>
</section>
</main>
<footer>
<p>Follow us on social media:</p>
<ul>
<li><a href="https://www.facebook.com/victor chibuike" target="_blank">Facebook</a></li>
<li><a href="https://www.instagram.com" target="_blank">Instagram</a></li>
<li><a href="https://www.twitter.com/viktor chibuike" target="_blank">X (Twitter)</a></li>
<li><a href="mailto:[email protected]">Email Us</a></li>
</ul>
<p>© 2024 TeenZee. All rights reserved.</p>
</footer>
</body>
</html>