-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpublic_dashboard.html
50 lines (45 loc) · 1.73 KB
/
public_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
<!DOCTYPE html>
<html lang="en" ng-app="publicDashboardApp">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Public Dashboard</title>
<link rel="stylesheet" href="public_styles.css">
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar">
<div class="navbar-logo">Public Dashboard</div>
<ul class="navbar-menu">
<li><a href="newCourseManagement.html">Course Management</a></li>
<li><a href="payment.html">Payment</a></li>
<li><a href="rating.html">Rating</a></li>
<li><a href="quiz.html">Quiz Game</a></li>
<li><a href="personalizedSearch.html">Personalized Learning</a></li>
<li><a href="aboutus.html">About Us</a></li>
</ul>
<div class="navbar-account">
<img src="user.png" alt="Avatar" style="width: 30px; height: 30px;">
</div>
</nav>
<!-- Content Section -->
<div ng-controller="PublicController" class="container">
<h2>Welcome to the Public Dashboard</h2>
<!-- Display updated content from admin dashboard -->
<div>
<h3>Courses</h3>
<ul>
<li ng-repeat="course in courses">
{{ course.name }} - {{ course.description }}
</li>
</ul>
</div>
</div>
<!-- Footer Section -->
<footer class="footer">
<p>© 2024 Public Dashboard. All rights reserved.</p>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js"></script>
<script src="public_dashboard.js"></script>
</body>
</html>