43 lines
752 B
HTML
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> |