Spaces:
Running
Running
nroggendorff
commited on
Commit
•
2c9f54d
1
Parent(s):
8836628
Create public/index.html
Browse files- public/index.html +21 -0
public/index.html
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Chat UI</title>
|
7 |
+
<link rel="stylesheet" href="style.css">
|
8 |
+
</head>
|
9 |
+
<body>
|
10 |
+
<div id="app">
|
11 |
+
<div class="chat-container">
|
12 |
+
<div id="messages" class="messages"></div>
|
13 |
+
<form id="chat-form">
|
14 |
+
<input type="text" id="user-input" placeholder="Type a message..." autocomplete="off" required />
|
15 |
+
<button type="submit">Send</button>
|
16 |
+
</form>
|
17 |
+
</div>
|
18 |
+
</div>
|
19 |
+
<script src="client.js"></script>
|
20 |
+
</body>
|
21 |
+
</html>
|