-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
45 lines (36 loc) · 834 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
44
45
<!doctype html>
<html lang="en">
<head>
<title>Raygun2Jira options</title>
<style>
label {
min-width: 100px;
display: inline-block;
}
div {
margin-bottom: 1em;
}
.buttons {
text-align: right;
}
</style>
</head>
<body>
<div>
<label for="server">Server</label>
<input type="text" id="server" placeholder="https://jira.yourserver.com"/>
</div>
<div>
<label for="projects">Project</label>
<select id="projects"></select>
</div>
<div>
<label for="issueTypes">Issue Type</label>
<select id="issueTypes"></select>
</div>
<div class="buttons">
<button id="save">Save</button>
</div>
<script src="options.js"></script>
</body>
</html>