SpaceApper/options/options.html
2024-07-28 23:22:45 +02:00

31 lines
773 B
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="options.css" />
</head>
<body>
<form>
<table id="spaces">
<thead>
<tr>
<td>Name</td>
<td>URL</td>
<td>Icon URL</td>
<td></td>
</tr>
</thead>
<tbody></tbody>
</table>
<div id="actions">
<button id="add" type="button">Add</button>
<button type="submit" class="btn-primary">Save</button>
</div>
</form>
<script type="module" src="options.js"></script>
</body>
</html>