postify/options.html
Anton Vakhrushev 53c583464d Simplify code
2018-08-23 13:57:19 +03:00

43 lines
752 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<style type="text/css">
.left {
text-align: left;
}
</style>
<body>
<form class="js-form">
<p>
Specify servers and url patterns.
</p>
<table>
<thead>
<tr>
<th class="left">Server address</th>
<th class="left">Url pattern</th>
</tr>
</thead>
<tbody class="js-pattern-rows">
</tbody>
</table>
<button type="submit" class="js-submit">Save</button>
<button class="js-add">Add</button>
</form>
<script src="storage.js"></script>
<script src="options.js"></script>
</body>
</html>