Files
42_INT_14_transcendence/tests_hugo/chat/chat_client/index.html
2022-11-20 20:18:59 +01:00

24 lines
489 B
HTML

<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div>
<ul id="messages"></ul>
</div>
<div>
<input type="text" id="message" />
<button onclick="handle_submit_new_message()">Submit</button>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.3.0/socket.io.js"></script>
<script src="./chat_socket.js"></script>
</body>
</html>