17 lines
504 B
HTML
17 lines
504 B
HTML
<!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>
|