-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteacher-dashboard.html
28 lines (28 loc) · 1.01 KB
/
teacher-dashboard.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSE Teacher Dashboard</title>
<link rel="icon" type="image/png" href="logo.PNG">
<link rel="stylesheet" href="dashboard.css">
</head>
<body>
<div class="dashboard">
<h1>Welcome, Teacher!</h1>
<div class="card">
<h2>Mark Attendance</h2>
<p>Mark attendance for your assigned classes.</p>
<button onclick="window.location.href='attendance.html'">Take Attendance</button>
</div>
<div class="card">
<h2>Schedule</h2>
<p>Check and update your teaching schedule.</p>
<button onclick="window.location.href='https://drive.google.com/file/d/128IDFmLWJBP_RSF8TCPl6wKpQ1oRyFG2/view?usp=sharing'">View Your Schedule</button>
</div>
<button onclick="window.location.href='index.html'">
Back to login page
</button>
</div>
</body>
</html>