-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstudashboard.html
More file actions
58 lines (50 loc) · 2.05 KB
/
studashboard.html
File metadata and controls
58 lines (50 loc) · 2.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Student Dashboard</title>
<link rel="stylesheet" href="studashboard.css">
</head>
<body>
<div class="js">
</div>
<div class="dashboard">
<header>
<h1>Student Mental Health Dashboard</h1>
<p>Monitor your well-being and get AI-driven support</p>
</header>
<nav>
<ul>
<li><a href="#sentiment">Sentiment Analysis</a></li>
<li><a href="#behavior">Behavior Monitoring</a></li>
<li><a href="#voice">Voice Recognition</a></li>
<li><a href="#chatbot">AI Chatbot</a></li>
</ul>
</nav>
<main class="abc">
<section id="sentiment" class="card">
<h2>Sentiment Analysis</h2>
<p>Analyze discussions, emails, and assignments for stress-related language.</p>
<button onclick="redirectToSentiment()">Analyze Now</button>
</section>
<section id="behavior" class="card">
<h2>Behavior Monitoring</h2>
<p>Track attendance, assignment submissions, and stress indicators.</p>
<button onclick="redirectToBehavior()">Analyze Now</button>
</section>
<section id="voice" class="card">
<h2>Voice Recognition</h2>
<p>Analyze speech stress levels and microexpressions.</p>
<button onclick="window.location.href='voice.html'">Start Analysis</button>
</section>
<section id="chatbot" class="card">
<h2>AI Chatbot Therapy</h2>
<p>Get emotional support from AI-powered therapy chatbots.</p>
<button onclick="startChat()">Chat Now</button>
</section>
</main>
</div>
<script src="script.js"></script>
</body>
</html>