-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·34 lines (32 loc) · 1.98 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
<html>
<head>
<meta charset="UTF-8">
<script type="text/javascript" src="js/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="js/jquery.color-2.1.2.min.js"></script>
<script type="text/javascript" src="js/ace-1.2.0-min/ace.js"></script>
<script type="text/javascript" src="js/ace-1.2.0-min/mode-json.js"></script>
<script type="text/javascript" src="js/ace-1.2.0-min/theme-monokai.js"></script>
<script type="text/javascript" src="js/bootstrap-3.3.5/js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/client.js"></script>
<link rel="stylesheet" href="js/bootstrap-3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="js/bootstrap-3.3.5/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="css/style.css">
<title>JTL Connector RPC Viewer</title>
</head>
<body>
<div id="actions">
<button id="startBtn" href="#" class="btn btn-success"><span class="glyphicon glyphicon-play"></span> Start</button>
<button id="stopBtn" href="#" class="btn btn-warning" disabled="disabled"><span class="glyphicon glyphicon-stop"></span> Stop</button>
<button id="clearBtn" href="#" class="btn btn-danger" disabled="disabled"><span class="glyphicon glyphicon-refresh"></span> Clear</button>
<button id="latestBtn" href="#" class="btn btn-info"><span class="glyphicon glyphicon-open"></span> Get last results</button>
<div id="active" class="progress">
<div class="progress-bar progress-bar-striped active" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%">
Listening for requests...
</div>
</div>
<h3 id="title" class="pull-right"><span class="glyphicon glyphicon-list"></span> JTL Connector RPC View</h3>
</div>
<ul id="entries"></ul>
<div id="view"></div>
</body>
</html>