2024-07-28 23:22:45 +02:00
|
|
|
<!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>
|
2024-12-10 19:53:47 +01:00
|
|
|
<td>Badge Color</td>
|
2024-07-28 23:22:45 +02:00
|
|
|
<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>
|