34 lines
531 B
HTML
34 lines
531 B
HTML
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
<link rel="stylesheet" type="text/css" href="style.css" />
|
||
|
<script src='/socket.io/socket.io.js'></script>
|
||
|
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<div id="wrapper">
|
||
|
<div id="logo"> <img src="amazon.svg" /> </div>
|
||
|
<table>
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>worker id</th>
|
||
|
<th>ip address</th>
|
||
|
<th>country</th>
|
||
|
<th>fee</th>
|
||
|
<th>task start time</th>
|
||
|
<th>task completion time</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
|
||
|
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</div>
|
||
|
|
||
|
<script src="script.js"></script>
|
||
|
</body>
|
||
|
</html>
|