pico-website/src/apps/chat.html
2025-08-16 12:18:15 +02:00

16 lines
370 B
HTML

<!doctype html>
<html>
<head>
<script src="/chat.js" defer></script>
</head>
<body>
<h1>Chat</h1>
<div id="users"></div>
<div id="msgs"></div>
<form id="send">
<input id="sendcontent" name="content" autofocus required />
<input type="submit" value="Send" />
</form>
</body>
</html>