-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtutorial.html
More file actions
154 lines (148 loc) · 7.03 KB
/
tutorial.html
File metadata and controls
154 lines (148 loc) · 7.03 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tutorial</title>
<link rel="stylesheet" href="styles.css">
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<style>
.tutorial-section {
background-color: white;
border-style: outset;
border-radius: 10px;
padding: 20px;
text-align: left;
flex: 1;
margin: 10px;
font-weight: bold;
}
.video-container {
text-align: left;
margin-bottom: 20px;
}
.tutorial-section h4 {
margin-bottom: 15px;
}
.tutorial-section p {
font-size: 14px;
color: #555;
}
</style>
</head>
<body>
<!-- Sidebar -->
<div class="sidebar" id="sidebar">
<div class="logo">
<img src="edusync.png" alt="Logo">
<h1>EduSync</h1>
</div>
<ul>
<li><a href="dashboard.html"><i class="fas fa-home"></i> Dashboard</a></li>
<li><a href="sys_env.html"><i class="fas fa-chart-line"></i> System Enviroment</a></li>
<li><a href="applications.html"><i class="fas fa-cubes"></i> Installed Applications</a></li>
<li><a href="pc_details.html"><i class="fas fa-laptop"></i> PC Details</a></li>
<li><a href="stu_env.html"><i class="fas fa-user"></i> Student Details</a></li>
<li><a href="doubts.html"><i class="fas fa-question"></i> Doubts</a></li>
<li><a href="faq.html"><i class="fas fa-refresh"></i> FAQ</a></li>
<li><a href="tutorial.html"><i class="fas fa-chalkboard"></i> Tutorial</a></li>
</ul>
</div>
<!-- Main Content -->
<div class="main-content">
<!-- Top Bar -->
<div class="top-bar-panel">
<div class="top-bar">
<div class="top-bar-left">
<div class="search-box">
<input type="text" placeholder="Search...">
<i class="fas fa-search"></i>
</div>
</div>
<div class="top-bar-right">
<h3 style="text-align: centre">Welcome back! Jagruti</h3>
<div class="notifications">
<i class="fas fa-bell" onclick="toggleNotifications()"></i>
<div class="notification-panel" id="notificationPanel">
<div class="notification-header">
<span>Notifications</span>
<i class="fas fa-ellipsis-v" onclick="toggleNotificationMenu()"></i>
<div class="notification-menu" id="notificationMenu">
<ul>
<li>Archive All</li>
<li>Mark all as read</li>
<li>Disable Notifications</li>
<li>What's new?</li>
<li>Reports</li>
</ul>
</div>
</div>
<div class="notification-list">
<div class="notification-item">
<div class="notification-text">
<p>Software Update</p>
<span>A new software update in PC3</span>
</div>
</div>
<div class="notification-item">
<div class="notification-text">
<p>Doubt from Student</p>
<span>001-Error loading the software?</span>
</div>
</div>
<div class="notification-item">
<div class="notification-text">
<p>Notification3</p>
<span>Description</span>
</div>
</div>
</div>
</div>
</div>
<div class="user-info">
<img src="profile.jpeg" alt="User Image" onclick="toggleProfileDropdown()">
</div>
<div class="profile-dropdown" id="profileDropdown">
<a class="dropdown-item gap-2 py-2" href="javascript:;">
<div class="text-center">
<img src="profile.jpeg" class="rounded-circle p-1 shadow mb-3" alt="User Image">
<h5 class="user-name mb-0 fw-bold">Hello, Jagruti</h5>
</div>
</a>
<a class="dropdown-item" href="profile.html"><i class="fas fa-user"></i> Profile</a>
<a class="dropdown-item" href="#"><i class="fas fa-tachometer-alt"></i> Dashboard</a>
<a class="dropdown-item logout" href="index.html"><i class="fas fa-sign-out-alt"></i> Logout</a>
</div>
</div>
</div>
</div>
<div class="content-header">
<h3> <i class="fas fa-chalkboard"></i> Tutorial</h3>
</div>
<!-- Tutorial Section -->
<div class="tutorial-section">
<h4>User Manual Video Tutorial</h4>
<div class="video-container">
<iframe width="560" height="315" src="https://www.youtube.com/embed/WfWAzChNSn8"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<p>Watch this video to learn how to use the EduSync application. The video provides step-by-step instructions on navigating the interface, managing system environments, installing applications, and more.</p>
</div>
</div>
<!-- Footer -->
<footer class="footer">
<div class="footer-content">
<p>Copyright © 2024, EduSync</p> |
<div class="footer-links">
<a href="#">Terms of Service</a> |
<a href="#">Privacy Policy</a>
</div>
</div>
</footer>
</body>
</html>