diff options
Diffstat (limited to 'options.html')
| -rw-r--r-- | options.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/options.html b/options.html new file mode 100644 index 0000000..8db9394 --- /dev/null +++ b/options.html @@ -0,0 +1,33 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset="UTF-8"> + <title>Stash Web Extension Settings</title> + <style> + body { + font-family: sans-serif; + padding: 20px; + width: 300px; + } + input { + width: 100%; + margin-bottom: 10px; + } + </style> +</head> +<body> + <h2>Configuration</h2> + <label> + Stash base URL: + <input type="text" id="apiUrl" placeholder="URL"> + </label> + <label> + Token: + <input type="text" id="authToken" placeholder="Token"> + </label> + <button id="saveBtn">Save</button> + <p id="status"></p> + + <script src="options.js"></script> +</body> +</html> |
