Add settings

This commit is contained in:
Anton Vakhrushev
2018-08-23 13:33:47 +03:00
parent 9cfcefb1dd
commit 40fa9b9f07
3 changed files with 129 additions and 1 deletions

42
options.html Normal file

@@ -0,0 +1,42 @@
<!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="options.js"></script>
</body>
</html>