-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (42 loc) · 943 Bytes
/
index.html
File metadata and controls
46 lines (42 loc) · 943 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Minimal Vite Chat</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
#chatLog {
border: 1px solid #ccc;
padding: 10px;
margin-top: 10px;
height: 200px;
overflow-y: auto;
}
input {
padding: 5px;
font-size: 16px;
}
button {
padding: 5px 10px;
font-size: 16px;
margin-left: 5px;
}
</style>
</head>
<body>
<h1 id="title">Minimal Vite Chat</h1>
<div>
<input id="chatInput" type="text" placeholder="Type your message..." />
<button id="sendButton">Send</button>
<button id="loadButton">Load</button>
</div>
<div>
<p id="loading"></p>
</div>
<div id="chatLog"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>