-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteacherdetails.html
65 lines (61 loc) · 2.16 KB
/
teacherdetails.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Teacher Details</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="dashboard.css">
<style>
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');
</style>
</head>
<body>
<header>
<!-- <div class="header-content">
<h2 class="header-title">Dashboard</h2>
</div> -->
<nav>
<a href="home.html">Home</a>
<a href="about.html">About Us</a>
<a href="contact.html">Contact Us</a>
<a href="login.html">Login/Sign Up</a>
</nav>
</header>
<div class="container">
<div class="sidebar">
<div class="sidebar-header">
<img src="assets/images/IndiraLogo.png">
</div>
<div class="sidebar-menu">
<a href="studRegistration.html">
<button><i class="fas fa-user-plus"></i> Add Student</button>
</a>
<a href="studentList.html">
<button><i class="fas fa-list"></i> Student List</button>
</a>
<a href="TeacherRegistration.html">
<button><i class="fas fa-chalkboard-teacher"></i> Add Teacher</button>
</a>
<a href="teacherList.html">
<button><i class="fas fa-users"></i> Teacher List</button>
</a>
<!-- <a href="Dashboard.html">
<button><i class=" fas fa-school"></i> Go to Dashboard</button>
</a> -->
</div>
</div>
<div class="content">
<h2>Teacher Details</h2>
<div class="centerItem">
<div id="teacherDetails">
<!-- Teacher details will be displayed here -->
</div>
</div>
<div class="back-link">
<a href="teacherList.html">← Back to Teacher List</a>
</div>
<script src="assets/jquery.js"></script>
<script src="teacherDetails.js"></script>
</body>
</html>