-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (35 loc) · 1.08 KB
/
index.html
File metadata and controls
37 lines (35 loc) · 1.08 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chatbot</title>
<link rel="stylesheet" href="public/styles.css">
<link rel="shortcut icon" href="assets/chatbot.jpg" type="image/x-icon">
</head>
<body>
<div class="container">
<div class="sidebar">
<h3>Conversas</h3>
<div id="conversation-list" class="conversation-list">
</div>
<button id="new-conversation-btn" class="new-conversation-btn">Nova Conversa</button>
</div>
<div class="chat-container">
<div class="chat-header">
<h2>Chatbot</h2>
</div>
<div class="chat-box" id="chat-box">
<div class="message bot">
<p>Olá! Como posso te ajudar?</p>
</div>
</div>
<div class="chat-input">
<input type="text" id="user-input" placeholder="Digite sua mensagem...">
<button id="send-btn">Enviar</button>
</div>
</div>
</div>
<script src="public/script.js" defer></script>
</body>
</html>