-
Notifications
You must be signed in to change notification settings - Fork 17
/
index.html
28 lines (28 loc) · 930 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>ChatUp</title>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/lodash.js/3.7.0/lodash.min.js"></script>
<script type="text/javascript" src="chatuplib.js"></script>
<script type="text/javascript" src="script.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" />
<link rel="stylesheet" href="ChatUp.css" />
<style>
.ChatUpTestContainer {
height: 300px;
}
</style>
</head>
<body>
<div class="container" id="main">
<div class="col-md-12">
<h1>ChatUp</h1>
<div>
<label>Dispatcher URL</label>
<input type="text" value="http://localhost:8000" id="dispatcherURL">
</div>
<button class="btn btn-primary" id="addChatUpInstance">Add ChatUp Instance</button>
</div>
</div>
</body>
</html>