-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHomeStudent.html
More file actions
153 lines (130 loc) Β· 3.53 KB
/
HomeStudent.html
File metadata and controls
153 lines (130 loc) Β· 3.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Tracklytics | Student Dashboard</title>
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://site-assets.fontawesome.com/releases/v6.5.1/css/all.css"
/>
<!-- Dashboard CSS -->
<link rel="stylesheet" href="dashboard.css" />
</head>
<body>
<!-- TOP BAR -->
<header class="topbar">
<div class="brand">
<img src="image/logo.png" alt="logo" />
<div class="brand-text">
<span class="brand-name">Tracklytics</span>
<small class="brand-tagline">
Multi-Guide Project & Evaluation Management System
</small>
</div>
</div>
<div class="search-box">
<input type="text" placeholder="Search files, updates..." />
<button class="search-btn">
<i class="fa-regular fa-magnifying-glass"></i>
</button>
</div>
<!-- STUDENT DROPDOWN -->
<div class="user-dropdown">
<div class="user-info" id="studentMenuBtn">
<img src="image/user.png" />
<div>
<strong>Student</strong>
<span>Final Year</span>
</div>
<i class="fa-solid fa-chevron-down"></i>
</div>
<div class="dropdown-menu" id="studentDropdown">
<button id="myGroupBtn">
<i class="fa-solid fa-users"></i>
My Group
</button>
<button id="logoutBtn">
<i class="fa-solid fa-right-from-bracket"></i>
Log out
</button>
</div>
</div>
</header>
<!-- MAIN -->
<main class="dashboard">
<!-- LEFT: MY GROUP -->
<section class="card">
<h3>My Project Group</h3>
<div class="group">
<div class="group-info">
<h4>IoT Smart Campus</h4>
<p>Guide: Dr. Johnson</p>
<p>Team: Alice, Bob, Eve</p>
</div>
</div>
<button class="primary" id="viewProjectBtn" type="button">
View Details
</button>
</section>
<!-- CENTER: UPDATES -->
<section class="card">
<h3>Latest Updates</h3>
<ul class="updates">
<li>
<span class="icon">π</span>
<span>Guide feedback added</span>
</li>
<li>
<span class="icon">π</span>
<span>New documents uploaded</span>
</li>
<li>
<span class="icon">β°</span>
<span>Next review on 25 Sept</span>
</li>
</ul>
</section>
<!-- RIGHT: SUBMISSIONS -->
<section class="card">
<h3>My Submissions</h3>
<ul class="ideas">
<li>
<span class="icon">β
</span>
<span>Proposal Submitted</span>
</li>
<li>
<span class="icon">π</span>
<span>Mid Review Pending</span>
</li>
<li>
<span class="icon">β</span>
<span>Final Report Not Submitted</span>
</li>
</ul>
<button class="primary" id="uploadReportBtn">
Upload Report
</button>
<input type="file" id="fileInput" style="display:none;" />
</section>
<!-- BOTTOM: FILES -->
<section class="card full">
<h3>Project Files</h3>
<div class="projects">
<div class="project">
<img src="image/p1.png" />
<h4>Proposal.pdf</h4>
<button>Download</button>
</div>
<div class="project">
<img src="image/p2.jpg" />
<h4>Progress_Report.docx</h4>
<button>Download</button>
</div>
</div>
</section>
</main>
<!-- JS -->
<script src="student.js"></script>
</body>
</html>