-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (36 loc) · 1.4 KB
/
Copy pathindex.html
File metadata and controls
39 lines (36 loc) · 1.4 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Skype Chat Viewer</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="chat-container">
<div id="chat-list" class="sidebar">
<div class="sidebar-header">
<div class="sidebar-title">
<h2>Чаты (<span id="chat-count">0</span>)</h2>
<button id="save-changes-btn" title="Сохранить изменения">
<i class="fa-solid fa-save"></i> Сохранить
</button>
</div>
<input type="search" id="search-chat" placeholder="Поиск по чатам...">
</div>
<div class="chat-list-items">
</div>
</div>
<div id="message-view" class="main-chat">
<div id="chat-header" class="chat-header">
<h2 id="chat-title">Выберите чат для просмотра</h2>
<small id="chat-start-date"></small>
</div>
<div id="messages-container" class="messages-container">
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>