learn-request-queue/public/index.html

23 lines
563 B
HTML
Raw Normal View History

2020-06-24 21:34:53 +00:00
<!DOCTYPE html>
<html>
<head>
<link rel=stylesheet href=style.css />
2020-07-04 06:22:28 +00:00
<title>Learn Request Queue</title>
<script src="main.js" defer></script>
2020-06-24 21:34:53 +00:00
</head>
<body>
2020-07-04 06:22:28 +00:00
<h1>Learn Request Queue</h1>
<div id="requests"></div><br>
Count:
<select id="count" value="10" onchange="updateTable()">
<option>5</option>
<option selected="selected">10</option>
<option>25</option>
<option>50</option>
<option>100</option>
</select>
<input type="checkbox" id="allRequests" onchange="updateTable()">View requests in any state</input>
2020-06-24 21:34:53 +00:00
</body>
</html>