nroggendorff commited on
Commit
1e2eab9
1 Parent(s): f0c2fdc

Create index.html

Browse files
Files changed (1) hide show
  1. index.html +27 -0
index.html ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
15
+ type="text"
16
+ id="user-input"
17
+ placeholder="Ask anything.."
18
+ autocomplete="off"
19
+ required
20
+ />
21
+ <button type="submit">Send</button>
22
+ </form>
23
+ </div>
24
+ </div>
25
+ <script type="module" src="client.js"></script>
26
+ </body>
27
+ </html>