-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (28 loc) · 1.12 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
<html>
<head>
<title>Real Time Chat</title>
<script src="/chat.js"></script>
<script src="/socket.io/socket.io.js"></script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="/css/bootstrap.min.css">
<link rel="stylesheet" href="/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<script src= "/jquery/dist/jquery.min.js"></script>
<script type="text/javascript" src="/js/bootstrap.min.js"></script>
<h1>Real Time Chat</h1>
<h5>Enter name to begin chatting or type "/" or "\" for commands.</h5>
<div class="rcorners" id = "content"></div>
<div class="scrollbar" id="style-1"></div>
<div class="controls" id ="chat">
<input id = "load" type="submit" class="btn btn-primary.raised.active" value="Load Previous"><br>
<div class="relative">Name:
<input class="input" id="name" style="left: 20px"><br></div>
<div class="relative">Message:
<input class="input" id="field">
<input id = "send" type="submit" class="btn btn-primary.raised.active" value="Submit"></div>
</div>
</body>
</html>