aboutsummaryrefslogtreecommitdiff
path: root/chrome/settings.html
diff options
context:
space:
mode:
authorEinar Egilsson2011-08-29 15:40:18 +0200
committerEinar Egilsson2011-08-29 15:40:18 +0200
commit14c86c9676cd02a61c0a2d1254ea1843d7713473 (patch)
tree167e2442e93f1b832bc7a5a10b4aabd9e32985c3 /chrome/settings.html
parent3e0cb9136bf1a428680db8a886eb8731b9a0b863 (diff)
Very rough draft of html settings
Diffstat (limited to 'chrome/settings.html')
-rw-r--r--chrome/settings.html80
1 files changed, 80 insertions, 0 deletions
diff --git a/chrome/settings.html b/chrome/settings.html
new file mode 100644
index 0000000..10472f6
--- /dev/null
+++ b/chrome/settings.html
@@ -0,0 +1,80 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Redirector Extension Settings</title>
+ <style type="text/css">
+ body { font-family: Helvetica, Georgia, Arial, sans-serif; }
+ h1 { text-align:center; }
+ label { display:table-cell; }
+ input { display:table-cell; }
+ #redirect-form div { display:table-row; }
+ #redirect-form { display:none; }
+ </style>
+ <script type="text/javascript" src="js/jquery-1.6.2.min.js"></script>
+ <script type="text/javascript" src="js/settings.js"></script>
+ </head>
+ <body>
+ <h1>Redirector</h1>
+ <nav>
+ <a href="">Redirects</a>
+ <a href="">Preferences</a>
+ <a href="">Help</a>
+ </nav>
+ <div id="redirect-list">
+ <div>
+ Redirect asdfasdfasdfasdfasdf to ælasdtasdasdt
+ Example: hsdtasdt st to
+ </div>
+ </div>
+ <div id="crud">
+ <button>Add</button>
+ <button>Edit</button>
+ <button>Delete</button>
+ <button>Move Up</button>
+ <button>Move Down</button>
+ <button id="import">Import</button>
+ <button id="export">Export</button>
+ </div>
+ <div id="configuration">
+ <input type="checkbox" /> Enable Redirector
+ <input type="checkbox" /> Show status bar icon
+ <input type="checkbox" /> Show context menu
+ <input type="checkbox" /> Enable debug output
+ </div>
+ <div id="redirect-form">
+ <div>
+ <label>Description</label>
+ <input type="text" value="foo"/>
+ </div>
+ <div>
+ <label>Example URL</label>
+ <input type="text" value="foo"/>
+ </div>
+ <div>
+ <label>Include Pattern</label>
+ <input type="text" value="foo"/>
+ </div>
+ <div>
+ <label>Exclude Pattern</label>
+ <input type="text" value="foo"/>
+ </div>
+ <div>
+ <label>Redirect To</label>
+ <input type="text" value="foo"/>
+ </div>
+ <div>
+ <label>Pattern Type</label>
+ <input type="radio" /> Regular Expression
+ <input type="radio" /> Wildcard
+ </div>
+ <div>
+ <label>Unescape matches</label>
+ <input type="checkbox"/>
+ </div>
+ <div>
+ <label>Enabled</label>
+ <input type="checkbox"/>
+ </div>
+ </div>
+ </body>
+</html> \ No newline at end of file