2024-09-30 01:49:30 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>A Dumb Chat Application</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<script src="https://unpkg.com/mithril/mithril.js"></script>
|
|
|
|
<script src="/js/chat-service.js"></script>
|
|
|
|
<script>
|
|
|
|
// start the chat web socket
|
|
|
|
|
|
|
|
// render the application
|
|
|
|
|
|
|
|
const root = document.body;
|
2024-09-30 02:11:58 +00:00
|
|
|
m.render(root, [
|
|
|
|
m("h1", "A Stupid Chat"),
|
|
|
|
m("div", [
|
|
|
|
m("div", { id: "messages" }, [
|
|
|
|
|
|
|
|
]).
|
|
|
|
m("form", { id: "message-form" }, [
|
|
|
|
|
|
|
|
])
|
|
|
|
])
|
|
|
|
]);
|
2024-09-30 01:49:30 +00:00
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|