Spaces:
Running
Running
File size: 670 Bytes
e05020c f9c6964 e05020c 33c5766 e05020c 33c5766 f9c6964 33c5766 f9c6964 33c5766 f9c6964 33c5766 f9c6964 33c5766 |
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 |
<!DOCTYPE html>
<html lang="zh-Hant">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My ChatGPT-like App</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="chat-container">
<header class="chat-header">
<h1>Large Model Chat</h1>
</header>
<main id="chat-window" class="chat-window"></main>
<footer class="chat-input-area">
<textarea id="userMessage" placeholder="輸入訊息後按 Enter 送出..."></textarea>
<button id="sendBtn">送出</button>
</footer>
</div>
<script type="module" src="index.js"></script>
</body>
</html>
|