-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsaved-responses.html
More file actions
45 lines (42 loc) · 1.57 KB
/
saved-responses.html
File metadata and controls
45 lines (42 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SaveChat - All Saved Responses</title>
<link rel="stylesheet" href="saved-responses.css">
</head>
<body>
<div class="container">
<div class="header">
<div class="logo">
<img src="./icons/favicon-32x32.png" alt="SaveChat logo" class="logo-icon">
<h1>SaveChat</h1>
</div>
<div class="stats">
<div class="stat-item">
<div class="stat-number" id="total-responses">0</div>
<div class="stat-label">Responses</div>
</div>
<div class="stat-item">
<div class="stat-number" id="total-characters">0</div>
<div class="stat-label">Characters</div>
</div>
</div>
</div>
<div class="controls">
<input type="text" class="search-box" id="search-box" placeholder="Search saved responses...">
<button class="filter-btn active" data-filter="all">All</button>
<button class="filter-btn" data-filter="recent">Recent</button>
<button class="filter-btn" data-filter="oldest">Oldest</button>
</div>
<div id="content">
<div class="loading">
<div class="spinner"></div>
<p>Loading saved responses...</p>
</div>
</div>
</div>
<script src="saved-responses.js"></script>
</body>
</html>