You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
715 B
28 lines
715 B
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Socket.IO Chat Example</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<ul class="pages">
|
|
<li class="chat page">
|
|
<div class="chatArea">
|
|
<ul class="messages"></ul>
|
|
</div>
|
|
<input class="inputMessage" placeholder="Type here..."/>
|
|
</li>
|
|
<li class="login page">
|
|
<div class="form">
|
|
<h3 class="title">What's your nickname?</h3>
|
|
<input class="usernameInput" type="text" maxlength="14" />
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
|
|
<script src="/jquery.min.js"></script>
|
|
<script src="/socket.io-client/socket.io.js"></script>
|
|
<script src="/main.js"></script>
|
|
</body>
|
|
</html>
|