42 lines
1.2 KiB
HTML
42 lines
1.2 KiB
HTML
<!doctype html>
|
|
<html lang="en" class="chat-html">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Chat</title>
|
|
<link rel="stylesheet" href="/static/css/site.css" />
|
|
|
|
<script type="module">
|
|
import init, { init_chat } from "/pkg/frontend.js";
|
|
await init().catch((err) => {
|
|
console.error("Failed to initialize WASM", err);
|
|
});
|
|
init_chat();
|
|
</script>
|
|
</head>
|
|
<body class="chat-body">
|
|
<main class="chat-shell">
|
|
<section class="chat-panel">
|
|
<div class="chat-header">
|
|
<h1 class="chat-title">Chat</h1>
|
|
<div class="chat-subtitle">Live session</div>
|
|
</div>
|
|
|
|
<div class="chat-container">
|
|
<div class="chat-messages" id="chat-messages"></div>
|
|
|
|
<div class="chat-input-area">
|
|
<textarea
|
|
class="chat-input"
|
|
id="chat-input"
|
|
placeholder="Write a message. Shift+Enter for a new line."
|
|
rows="4"
|
|
></textarea>
|
|
<div class="chat-status-label" id="chat-status"></div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
</body>
|
|
</html>
|