forked from hmkcode/Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (24 loc) · 700 Bytes
/
index.html
File metadata and controls
31 lines (24 loc) · 700 Bytes
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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Java Async Servlet</title>
<!-- jQuery 1.9 -->
<script src="js/jquery.1.9.1.min.js"></script>
<!-- bootstrap just to have good looking page -->
<link href="bootstrap/css/bootstrap.css" type="text/css" rel="stylesheet" />
<!-- we code these -->
<script src="js/myfunctions.js"></script>
</head>
<body>
<h1 style="text-align:center">Java Async Servlet<br></h1>
<button id="start" class="btn btn-success">Start</button>
<button id="exit" class="btn btn-danger">Exit</button>
<table id="asyncResponse" class="table" style="width:300px">
<tr>
<th>Request ID</th>
<th>Response ID</th>
</tr>
</table>
</body>
</html>