-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDashboard.html
78 lines (76 loc) · 3.09 KB
/
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
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
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>School App Dashboard</title>
<link rel="stylesheet" href="dashboard.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"> <!-- Font Awesome CSS -->
</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>
</div>
</div>
<div class="content">
<h1 class="welcome-message">Welcome to the Indira School</h1>
<h3 class ="subtitle">Check out our chatbot by clicking the link below for quick <br>answers to frequently asked questions.</h3>
<div class="chatbot1">
<a href="chatbot.html" ><b>Try our Chatbot 🤖 </b></a>
</div>
</div>
</div>
<footer>
<div class="footer-content">
<div class="footer-left">
<h3>School App</h3>
<p>A platform for managing students and teachers efficiently.</p>
<ul class="social-links">
<li><a href="#"><i class="fab fa-facebook"></i></a></li>
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
<!-- <li><a href="#"><i class="fab fa-instagram"></i></a></li> -->
</ul>
</div>
<div class="footer-right">
<h3>Contact Us</h3>
<ul class="contact-info">
<li><i class="fas fa-map-marker-alt"></i> 123 School Street, Cityville, Country</li>
<li><i class="fas fa-phone"></i> +123 456 7890</li>
<!-- <li><i class="fas fa-envelope"></i> [email protected]</li> -->
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 School App. All rights reserved.</p>
</div>
</footer>
<script src="scripts.js"></script>
</body>
</html>