-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
56 lines (50 loc) · 1.33 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<title>Confluence Options</title>
<style>
body {
font-family: Arial, sans-serif;
padding: 15px;
width: 350px;
background-color: #F4F5F7;
color: #172B4D;
}
</style>
</head>
<body>
<table>
<tr>
<td><text>Subdomain</text></td>
<td><input type="text" id="subdomain" placeholder="subdomain"></td>
<td><text>.atlassian.net</text></td>
<tr>
<tr>
<td><text>Type</text></td>
<td>
<select id="type">
<option value="page">page</option>
<option value="blogpost">blogpost</option>
<option value="page&blogpost">page&blogpost</option>
<option value="all">all</option>
</select>
</td>
<td></td>
<tr>
<tr>
<td><text>Space Key(s)</text></td>
<td><input type="text" id="spacekey" placeholder="SpaceKey"></td>
</tr>
<tr>
<td><text>Limit</text></td>
<td><input type="number" id="limit" placeholder="Page Size" value="25"><td>
</tr>
</table>
<img id="help" src="images/help.png" style="cursor:pointer;">
<footer>
<button id="save">Save</button>
<div id="status_msg"></div>
</footer>
<script src="options.js"></script>
</body>
</html>