diff options
| author | Leonardo Bishop <me@leonardobishop.net> | 2025-09-17 20:14:09 +0100 |
|---|---|---|
| committer | Leonardo Bishop <me@leonardobishop.net> | 2025-09-17 20:14:09 +0100 |
| commit | 61e27eef33da20a9f174d2debee151cb8b100389 (patch) | |
| tree | 454fcbe8fdac7c9e306a7df3c7bcaa907eb5a65f /options.html | |
Initial commit
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> |
