-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (41 loc) · 1.07 KB
/
index.html
File metadata and controls
46 lines (41 loc) · 1.07 KB
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
<!Doctype html>
<html lang="en">
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" language="javascript"></script>
<script src="js/appParse.js" type="text/javascript" language="javascript" ></script>
<link href="css/bootstrap.min.css" type="text/css" rel="stylesheet" />
<link href="css/style.css" type="text/css" rel="stylesheet" />
</head>
<body>
<div class="container-fluid">
<div class="row-fluid">
<h1>Chat with Parse REST API</h1>
<table class="table table-bordered table-striped">
<caption>Messages</caption>
<thead>
<tr>
<th>
Username
</th>
<th>
Message
</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="2">No messages</td>
</tr>
</tbody>
</table>
</div>
<div class="row-fluid">
<form id="new-user">
<input type="text" name="username" placeholder="Username" />
<input type="text" name="message" placeholder="Message" />
<a id="send" class="btn btn-primary">SEND</a>
</form>
</div>
</div>
</body>
</html>