-
Notifications
You must be signed in to change notification settings - Fork 0
/
ajax-chat.html
52 lines (41 loc) · 1.51 KB
/
ajax-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
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<link rel="stylesheet" type="text/css" href="js/jScrollPane/jScrollPane.css" />
<link rel="stylesheet" type="text/css" href="css/page.css" />
<link rel="stylesheet" type="text/css" href="css/chat.css" />
</head>
<body>
<div id="loginPage">
<h2 class='titreLogin'>FOU MESSENGER DE FEU</h2>
<form id="loginForm" method="post" action="">
<input id="name" name="name" class="rounded" maxlength="16" />
<input id="email" name="email" class="rounded" />
<input type="submit" class="blueButton1" value="Login" />
</form>
<p class='version'>Version BETA 1.0</p>
</div>
<div id="chatContainer">
<div id="chatTopBar" class="rounded"></div>
<div id="chatLineHolder"></div>
<div id="chatBottomBar" class="rounded">
<div class="tip"></div>
<form id="submitForm" method="post" action="">
<div class="buttonSend">
<input type="submit" class="blueButton" value="Envoyer" />
</div>
<input id="chatText" name="chatText" class="rounded" maxlength="255" />
</form>
</div>
</div>
<div id="chatUsers" class="rounded">
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script src="js/jScrollPane/jquery.mousewheel.js"></script>
<script src="js/jScrollPane/jScrollPane.min.js"></script>
<script src="js/script.js"></script>
<script src="js/script2.js"></script>
</body>
</html>