-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (53 loc) · 2.14 KB
/
Copy pathindex.html
File metadata and controls
54 lines (53 loc) · 2.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Chatbot</title>
<link rel="stylesheet" href="style.css" />
<script src="response.js" defer></script>
<script src="https://cdn.jsdelivr.net/npm/@emailjs/browser@4/dist/email.min.js"></script>
<script type="text/javascript">
(function(){
emailjs.init({
publicKey: "YOUR_PUBLIC_KEY", // EMAILJS PUBLIC KEY
});
})();
</script>
<script src="app.js" defer></script>
</head>
<body>
<div class="chat-container" id="chatContainer">
<div class="chat-header">
<div class="logo">
<img src="images/logo.png" alt="SimpleBot logo" />
</div>
<div class="title">SimpleBot</div>
<button class="minimize-btn" id="minimizeBtn" title="Minimizar">
<svg width="18" height="18" viewBox="0 0 18 18" fill="none">
<line x1="4" y1="13" x2="14" y2="13" stroke="#161616" stroke-width="2" stroke-linecap="round"/>
</svg>
</button>
</div>
<div class="chat-body"></div>
<div class="chat-input">
<div class="input-sec">
<input type="text" id="txtInput" placeholder="Type here" autofocus />
</div>
<div class="send">
<img src="images/send.png" alt="send" />
</div>
</div>
</div>
<div class="chat-bubble" id="chatBubble">
<svg class="icon-chat" width="26" height="26" viewBox="0 0 26 26" fill="none">
<path d="M13 2C7.477 2 3 6.477 3 12c0 1.89.52 3.66 1.43 5.18L3 22l5.07-1.38A9.96 9.96 0 0013 22c5.523 0 10-4.477 10-10S18.523 2 13 2z" fill="white"/>
</svg>
<svg class="icon-close" width="20" height="20" viewBox="0 0 20 20" fill="none">
<line x1="4" y1="4" x2="16" y2="16" stroke="white" stroke-width="2.2" stroke-linecap="round"/>
<line x1="16" y1="4" x2="4" y2="16" stroke="white" stroke-width="2.2" stroke-linecap="round"/>
</svg>
</div>
</body>
</html>