about summary refs log tree commit diff stats
path: root/pages/options
diff options
context:
space:
mode:
authorSimon Brazell <simon.brazell@gmail.com>2019-09-29 23:04:24 +1000
committerSimon Brazell <simon.brazell@gmail.com>2019-10-01 23:21:26 +1000
commit2738833c5404031ed06c5e1985ee6f2dd5b359e5 (patch)
tree60207b46e90dc5e5d646e9212074a1d25f8438af /pages/options
parentAdd screenshots for store (diff)
downloadlibredirect-2738833c5404031ed06c5e1985ee6f2dd5b359e5.zip
Add popup & options pages
Diffstat (limited to 'pages/options')
-rw-r--r--pages/options/options.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/pages/options/options.html b/pages/options/options.html
new file mode 100644
index 00000000..f51f7201
--- /dev/null
+++ b/pages/options/options.html
@@ -0,0 +1,27 @@
+<!DOCTYPE html>
+<html>
+
+<head>
+  <title>My Test Extension Options</title>
+</head>
+
+<body>
+
+  Favorite color:
+  <select id="color">
+    <option value="red">red</option>
+    <option value="green">green</option>
+    <option value="blue">blue</option>
+    <option value="yellow">yellow</option>
+  </select>
+
+  <label>
+    <input type="checkbox" id="like">
+    I like colors.
+  </label>
+
+  <div id="status"></div>
+  <button id="save">Save</button>
+</body>
+
+</html>
\ No newline at end of file