blob: b09837da6924504808f474d8f99bdc555a180a1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Webpage Logger Options</title>
<style>
body {
margin-left: 2em;
font-family: sans-serif
}
</style>
</head>
<body>
<h2>Webpage Logger</h2>
<label>
Callback URL: <input id="callback" type="text">
</label>
<br>
<label>
Browser Key: <input id="key" type="text">
</label>
<script src='options.js'></script>
</body>
</html>
|