summaryrefslogtreecommitdiffstats
path: root/options.html
blob: 8db93940d9337946ac2b9a9058c0f58852a27084 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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>