-
Notifications
You must be signed in to change notification settings - Fork 25
/
index.html
32 lines (25 loc) · 1.03 KB
/
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
26
27
28
29
30
31
32
<html>
<head>
<script src="https://cdn.firebase.com/js/client/2.2.1/firebase.js"></script>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js'></script>
<link rel="stylesheet" href="http://hackeryou.com/wp-content/themes/hackeryou/style.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 + FireBase!</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>