Initial frontend
This commit is contained in:
parent
0f3d921d96
commit
d55d1d1abe
3 changed files with 68 additions and 3 deletions
|
@ -2,11 +2,21 @@
|
|||
<html>
|
||||
<head>
|
||||
<link rel=stylesheet href=style.css />
|
||||
<title>Test Main Page</title>
|
||||
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha384-tsQFqpEReu7ZLhBV2VZlAu7zcOV+rXbYlF2cqB8txI/8aZajjp4Bqd+V6D5IgvKT" crossorigin="anonymous"></script>
|
||||
<title>Learn Request Queue</title>
|
||||
<script src="main.js" defer></script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Test Main Page</h1>
|
||||
<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>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue