-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsimple-test.html
More file actions
35 lines (34 loc) · 1.02 KB
/
simple-test.html
File metadata and controls
35 lines (34 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Chat Test</title>
<style>
body {
margin: 0;
padding: 20px;
font-family: sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
}
.test-container {
max-width: 800px;
margin: 0 auto;
background: white;
padding: 40px;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
h1 { color: #333; text-align: center; }
</style>
</head>
<body>
<div class="test-container">
<h1>Simple Chat Widget Test</h1>
<p>This tests a basic version of the chat widget. Check the bottom right corner and browser console (F12).</p>
</div>
<script src="js/simple-chat-test.js"></script>
<script src="js/chat-onj-built-f.js"></script>
</body>
</html>