-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
129 lines (122 loc) · 5.86 KB
/
Copy pathindex.html
File metadata and controls
129 lines (122 loc) · 5.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CommentIQ - Intelligent Comment Analysis System</title>
<link rel="stylesheet" href="styles.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
</head>
<body>
<div class="app">
<!-- Header -->
<header class="header">
<div class="container">
<div class="header-content">
<div class="logo">
<div class="logo-icon">
<i class="fas fa-brain"></i>
</div>
<div class="logo-text">
<h1>CommentIQ</h1>
<p>Intelligent Comment Analysis System</p>
</div>
</div>
<nav class="nav">
<button class="nav-btn active" data-tab="analyzer">
<i class="fas fa-search"></i>
Analyzer
</button>
<button class="nav-btn" data-tab="analytics">
<i class="fas fa-chart-bar"></i>
Analytics
</button>
</nav>
</div>
</div>
</header>
<main class="main">
<div class="container">
<!-- Analyzer Tab -->
<div id="analyzer-tab" class="tab-content active">
<!-- Hero Section -->
<div class="hero">
<h2>AI-Powered Comment Analysis</h2>
<p>Automatically detect toxic content, filter spam, analyze sentiment, and categorize feedback to help content creators engage meaningfully with their audience.</p>
</div>
<!-- Input Section -->
<div class="input-section">
<div class="section-header">
<i class="fas fa-comment"></i>
<h3>Comment Input</h3>
</div>
<div class="input-content">
<label for="comments-input">Paste comments (one per line) or try our sample data:</label>
<textarea
id="comments-input"
placeholder="Enter comments here, one per line..."
rows="6"
></textarea>
<div class="button-group">
<button id="analyze-custom-btn" class="btn btn-primary">
<i class="fas fa-upload"></i>
Analyze Custom
</button>
<button id="analyze-sample-btn" class="btn btn-secondary">
<i class="fas fa-play"></i>
Try Sample Data
</button>
<button id="reset-btn" class="btn btn-tertiary">
<i class="fas fa-redo"></i>
Reset
</button>
</div>
</div>
</div>
<!-- Processing Section -->
<div id="processing-section" class="processing-section hidden">
<div class="processing-grid">
<!-- Steps Indicator -->
<div class="steps-container">
<div class="section-header">
<h3>Analysis Pipeline</h3>
</div>
<div id="steps-list" class="steps-list">
<!-- Steps will be populated by JavaScript -->
</div>
</div>
<!-- Results -->
<div class="results-container">
<div class="section-header">
<h3>Processed Comments (<span id="comment-count">0</span>)</h3>
<div id="processing-indicator" class="processing-indicator hidden">
<div class="spinner"></div>
<span>Processing...</span>
</div>
</div>
<div id="comments-list" class="comments-list">
<div class="empty-state">
<i class="fas fa-comment-slash"></i>
<p>No comments processed yet. Upload some comments to get started!</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Analytics Tab -->
<div id="analytics-tab" class="tab-content">
<div class="analytics-header">
<i class="fas fa-chart-bar"></i>
<h2>Analytics Dashboard</h2>
</div>
<div id="analytics-content" class="analytics-content">
<!-- Analytics will be populated by JavaScript -->
</div>
</div>
</div>
</main>
</div>
<script src="script.js"></script>
</body>
</html>