-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (50 loc) · 1.79 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<link href="Content/bootstrap.css" rel="stylesheet" />
<link href="Content/StyleSheet1.css" rel="stylesheet" />
</head>
<body>
<div id="output1">
</div>
<div class="mainLeft">
</div>
<div class="mainRight" >
</div>
<div class="centerRight">
<textarea rows="6" class="form-control" id="output"></textarea>
</div>
<div class="centerLeft">
<form class="form-group input-lg" id="inputDiv">
<table>
<tr>
<td>
<label for="name">Name: </label>
</td>
<td>
<input placeholder="name" class="input input-lg" type="text" id="name" />
</td>
</tr>
<tr>
<td>
<label for="message">Message: </label>
</td>
<td>
<input placeholder="message" class="input input-lg" type="text" id="message" />
</td>
<td>
<button class="btn btn-lg btn-info" type="button" onclick="chatApp.messagePut();">Submit</button>
</td>
</tr>
<tr>
<td></td>
</tr>
</table>
</form>
</div>
<script src="Scripts/jquery-1.9.0.js"></script>
<script src="Scripts/bootstrap.js"></script>
<script src="JavaScript1.js"></script>
</body>
</html>