-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudent-dashboard.html
29 lines (26 loc) · 998 Bytes
/
student-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
29
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSE Student Dashboard</title>
<link rel="icon" type="image/png" href="logo.PNG">
<link rel="stylesheet" href="level2.css">
</head>
<body>
<div class="dashboard">
<h1>Welcome, Student!</h1>
<div class="card">
<h2>View Attendance</h2>
<p>Check your attendance record.</p>
<button onclick="window.location.href='attendance-record.html'">Attendance</button>
</div>
<div class="card">
<h2>Time Table</h2>
<p>View your class schedule and timings.</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>