25 lines
698 B
HTML
25 lines
698 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
|
<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"/>
|
|
<button type="submit">Send</button>
|
|
<button id="logout" type="button">Logout</button>
|
|
</form>
|
|
|
|
<script src="/socket.io/socket.io.js"></script>
|
|
<script src="/static/js/chat.js"></script>
|
|
</body>
|
|
</html> |