Update templates/chat.html
Browse files- templates/chat.html +2 -16
templates/chat.html
CHANGED
@@ -4,24 +4,10 @@
|
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
<title>Chat with LLM</title>
|
7 |
-
<link rel="stylesheet" href="../static/styles.css">
|
8 |
</head>
|
9 |
<body>
|
10 |
-
<
|
11 |
-
|
12 |
-
<div class="chat-box" id="chat-box">
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
</div>
|
17 |
-
<div class="input-container">
|
18 |
-
<input type="text" id="chat-input" placeholder="Type your message here...">
|
19 |
-
<button id="send-button">Send</button>
|
20 |
-
</div>
|
21 |
</div>
|
22 |
-
<script src="https://cdn.socket.io/4.5.0/socket.io.min.js"></script>
|
23 |
-
<script src="https://cdnjs.cloudflare.com/ajax/libs/showdown/2.1.0/showdown.min.js" integrity="sha512-LhccdVNGe2QMEfI3x4DVV3ckMRe36TfydKss6mJpdHjNFiV07dFpS2xzeZedptKZrwxfICJpez09iNioiSZ3hA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
24 |
-
|
25 |
-
<script src="../static/script.js"></script>
|
26 |
</body>
|
27 |
</html>
|
|
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
<title>Chat with LLM</title>
|
|
|
7 |
</head>
|
8 |
<body>
|
9 |
+
<div style="width: 100%; height: 100vh; display: flex; align-items: center; justify-content: center;">
|
10 |
+
<h3>This is a demo space</h3>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
</div>
|
|
|
|
|
|
|
|
|
12 |
</body>
|
13 |
</html>
|