53 lines
1.5 KiB
HTML
53 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Chat</title>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/3.0.3/handlebars.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.2/moment.min.js"></script>
|
|
|
|
<link rel="stylesheet" href="css/style.css">
|
|
</head>
|
|
<body>
|
|
<div id="wrapper">
|
|
Status: <span id="socket-status" class="red">●</span>
|
|
Notification: <span id="notification-status" class="red">●</span>
|
|
|
|
<div id="user-container">
|
|
<label for="user">What's your name?</label>
|
|
<input type="text" id="user" name="user">
|
|
<button type="button" id="join-chat">Join Chat</button>
|
|
</div>
|
|
|
|
<div id="main-container" class="hidden">
|
|
<button type="button" id="leave-room">Leave</button>
|
|
<button type="button" id="toggle-notification">Notification</button>
|
|
<div id="messages">
|
|
|
|
</div>
|
|
|
|
<div id="msg-container">
|
|
<input type="text" id="msg" name="msg">
|
|
<button type="button" id="send-msg">Send</button>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script id="messages-template" type="text/x-handlebars-template">
|
|
{{#each messages}}
|
|
<div class="msg">
|
|
<div class="time">{{time}}</div>
|
|
<div class="details">
|
|
<span class="user">{{user}}</span>: <span class="text">{{text}}</span>
|
|
</div>
|
|
</div>
|
|
{{/each}}
|
|
</script>
|
|
|
|
<script src="js/worker/message.js"></script>
|
|
<script src="js/app.js"></script>
|
|
|
|
</body>
|
|
</html> |