32 lines
933 B
HTML
32 lines
933 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>
|
|
<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="error"></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> |