-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathoptions.html
43 lines (41 loc) · 865 Bytes
/
options.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<style>
html{
padding: 8px;
}
button, input, label {
display: block;
font-family: inherit;
padding: 0px;
margin: 0px;
margin-bottom: 0px;
box-sizing: border-box;
}
button {
margin-top: 8px;
padding: 4px 8px 4px 8px;
}
select {
padding: 4px 8px 4px 8px;
}
</style>
<body>
<form>
<label>
<h3>
<span>Instances</span>
</h3>
</label>
<select id="instance" name="instance" onchange="save(this)">></select>
<button id="savebtn" type="submit">Save</button>
</form>
<p>
Instances are loaded from <a href="https://github.com/redlib-org/redlib-instances" target="_blank">https://github.com/redlib-org/redlib-instances</a>
</p>
</body>
</html>
<script src="options.js"></script>