szoe-pontok/static/list/index.html

34 lines
578 B
HTML
Raw Normal View History

2024-10-11 13:58:12 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>List tasks</title>
<script src="/js/config.js"></script>
<script src="/js/utils.js"></script>
<script defer src="/js/list.js"></script>
</head>
<body>
<a href="/admin">Admin</a>
<div>Sum: <span id="sum"></span></div>
<table id="list">
<thead>
<tr>
<th>Description</th>
<th>Issuer</th>
<th>Points</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</body>
</html>