oh I started making a chat thungy

This commit is contained in:
2024-12-23 15:29:57 +00:00
parent 7e58876b9b
commit 26436b6bc3
613 changed files with 66380 additions and 8 deletions

16
chat/index.html Normal file
View File

@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="index.css">
<meta charset="UTF-8" />
</head>
<body>
<div id="displayed-comments"></div>
<form action="/chat/submit-comment" method="post" id="submit-comments-form">
<input name="nick" id="nick" placeholder="Enter your nick..." ><br/>
<textarea name="comment" id="comment" placeholder="Enter your comment..."></textarea><br/>
<button type="submit">Submit</button>
</form>
<script src="chat.js"></script>
</body>
</html>