23 lines
563 B
HTML
23 lines
563 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel=stylesheet href=style.css />
|
|
<title>Learn Request Queue</title>
|
|
<script src="main.js" defer></script>
|
|
</head>
|
|
<body>
|
|
<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>
|
|
</body>
|
|
</html>
|
|
|