diff options
Diffstat (limited to 'src/options/options.html')
| -rw-r--r-- | src/options/options.html | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/options/options.html b/src/options/options.html new file mode 100644 index 0000000..bf70f4c --- /dev/null +++ b/src/options/options.html @@ -0,0 +1,35 @@ +<!doctype html> +<html> + <head> + <meta charset="utf-8" /> + <title>AI Compose Settings</title> + <style> + body { + font-family: sans-serif; + padding: 10px; + } + label { + display: block; + margin: 10px 0 4px; + } + input { + width: 100%; + padding: 6px; + } + button { + margin-top: 10px; + padding: 6px 12px; + } + </style> + </head> + <body> + <h2>Settings</h2> + <label>Proxy Endpoint <input id="endpoint" type="url" /></label> + <label>Auth Token <input id="token" type="text" /></label> + <button id="save">Save</button> + <p id="msg"></p> + + <script src="../browser-polyfill.js"></script> + <script src="options.js"></script> + </body> +</html> |
