-
Notifications
You must be signed in to change notification settings - Fork 5
/
chat.html
39 lines (39 loc) · 1.04 KB
/
chat.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
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<title>Coding Dojo</title>
<link type="text/css" rel="stylesheet/less" href="less/chat.less" />
<script type="text/javascript" src="js/libs/less-1.3.0.min.js"></script>
</head>
<body>
<form class="chat" action="#" method="post">
<fieldset>
<section class="history">
</section>
<input class="message" type="text" />
</fieldset>
</form>
<form class="chat" action="#" method="post">
<fieldset>
<section class="history">
</section>
<input class="message" type="text" />
</fieldset>
</form>
<form class="chat" action="#" method="post">
<fieldset>
<section class="history">
</section>
<input class="message" type="text" />
</fieldset>
</form>
<script src="js/util.js"></script>
<script src="js/chat.js"></script>
<!-- script src="http://github.com/jquery/qunit/raw/master/qunit/qunit.js"></script>
<script src="js/chatTest.js"></script -->
<script>
chatDojo.chat.start("João Neto");
</script>
</body>
</html>