forked from HackerYou/SlackerYou
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (25 loc) · 966 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<html>
<head>
<script src="https://cdn.flybase.io/flybase.js"></script>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js'></script>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<meta charset="UTF-8">
</head>
<body>
<div class="wrapper">
<h1>SlackerYou</h1>
<p class="desc">🔥 A RealTime Chat built with jQuery + FlyBase!</p>
<div class="messagesWrap">
<ul class="messages"></ul>
</div>
<form action="" class="chat">
<input type='text' id='nameInput' placeholder='Username' required maxlength=10>
<input type='text' id='messageInput' placeholder='Type a message...' required maxlength=140>
<input type="submit" value="Send →">
<small>Created for learning purposes - get the code at <a href="https://github.com/HackerYou/SlackerYou">github.com/HackerYou/SlackerYou</a>. Be nice when testing.</small>
</form>
</div>
<script src="scripts.js"></script>
</body>
</html>