-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathoptions.html
More file actions
48 lines (48 loc) · 896 Bytes
/
options.html
File metadata and controls
48 lines (48 loc) · 896 Bytes
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
*{
box-sizing:border-box;
}
html, body {
margin:0;
}
.main-container{
text-align:center;
}
div{
margin: 5px;
}
input{
width:75%;
}
</style>
</head>
<body>
<div class="main-container">
<div>
Set your API key below:
</div>
<div>
<input type="text" placeholder="API key (e.g. VHK7OoGO57kH1JOO9VlNo8AdRVF0wQ92)" id="apiKeyInput">
</div>
<div>
<button id="saveApiKeyBtn">Save API key</button>
</div>
<div>
Set your remote upload account:
</div>
<select name="remoteOptionsSelect" id="remoteOptionsSelect">
<option value="default">Default</option>
</select>
<div>
<button id="saveRemoteOptionBtn">Save remote account</button>
</div>
<div class="status-div"></div>
</div>
<script src="options.js"></script>
</body>
</html>