31 lines
773 B
HTML
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>
|