33 lines
525 B
HTML
33 lines
525 B
HTML
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
<link rel="stylesheet" type="text/css" href="backend.css" />
|
||
|
<meta http-equiv="refresh" content="20">
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<div id="wrapper">
|
||
|
<div id="logo"> <img src="amazon.svg" /> </div>
|
||
|
<table>
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th></th>
|
||
|
<th>worker id</th>
|
||
|
<th>ip address</th>
|
||
|
<th>country</th>
|
||
|
<th>fee</th>
|
||
|
<th>task start time</th>
|
||
|
<th>task completion time</th>
|
||
|
<th></th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{{TBODY}}
|
||
|
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|