-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstudent_dashboard.html
More file actions
63 lines (56 loc) · 2.01 KB
/
Copy pathstudent_dashboard.html
File metadata and controls
63 lines (56 loc) · 2.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Student Connect</title>
<link rel="stylesheet" href="student_dashboard.css">
</head>
<body>
<script src="https://cdn.botpress.cloud/webchat/v2.2/inject.js"></script>
<script src="https://files.bpcontent.cloud/2024/11/17/06/20241117065959-3SPTUBJ2.js"></script>
<header>
<div class="header-left">
<div class="icon">📘</div>
<span class="logo-text">Student Connect</span>
</div>
<div class="header-right">
<div class="notification">🔔</div>
<span class="user-name" id="userNameDisplay"><a href="sprofile.html">MY PROFILE 👋
</a>
</span>
</div>
</header>
<main>
<!-- Welcome Section -->
<section class="welcome-section">
<h1>Welcome back, <span id="userName">Hemant</span>! 👋</h1>
</section>
<!-- Recent Events Slider -->
<section class="slider-section">
<h2>Recent Events</h2>
<div class="slider-container">
<div class="slider" id="event-slider">
<!-- Slides will be dynamically inserted by JavaScript -->
</div>
<button class="slider-btn prev-btn" onclick="prevSlide()">‹</button>
<button class="slider-btn next-btn" onclick="nextSlide()">›</button>
</div>
</section>
<!-- Options Section -->
<section class="options-section">
<div class="column">
<button class="option-button"><a href="sproject.html">NEW PROJECT</a></button>
<button class="option-button"><a href="research.html">Research Opportunities</a></button>
</div>
<div class="column">
<button class="option-button">Contribute to Current Project</button>
</div>
</section>
</main>
<footer>
<p>© 2024 Student Connect. All rights reserved.</p>
</footer>
<script src="student_dashboard.js"></script>
</body>
</html>