oh I started making a chat thungy
This commit is contained in:
16
chat/index.html
Normal file
16
chat/index.html
Normal 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>
|
Reference in New Issue
Block a user