Files
web-chat/frontend/routes/chat.html
2024-09-10 21:27:45 +02:00

34 lines
963 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Chat</title>
<link rel="stylesheet" href="/static/stylesheet/chat.css">
</head>
<body>
<ul id="contacts"></ul>
<form id="recipientForm">
<input id="recipient" autocomplete="off" placeholder="Enter recipient"/>
<button type="submit">Set recipient</button>
</form>
<ul id="messages"></ul>
<form id="form" action="">
<input id="input" autocomplete="off" placeholder="Enter message"/>
<p id="messageBox"></p>
<button type="submit">Send</button>
<button type="button" id="settings" onclick="document.location.href='/settings';">Settings</button>
</form>
<script src="/socket.io/socket.io.js"></script>
<script src="/static/js/chat.js"></script>
</body>
</html>