-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathoptions.html
58 lines (56 loc) · 1.11 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
57
58
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="options.css">
<title>JWT Inspector Options</title>
</head>
<body>
<table>
<tr>
<td>
<label for="header_name">
HTTP Header name:
</label>
</td>
<td>
<input type="text" id="header_name">
</td>
</tr>
<tr>
<td>
<label for="header_prefix">
Prefix:
</label>
</td>
<td>
<input type="text" id="header_prefix"><br>
(More than one? Use , between them)
</td>
</tr>
<tr>
<td>
<label for="copy_prefix">
Copy prefix to clipboard
</label>
</td>
<td>
<input type="checkbox" id="copy_prefix">
</td>
</tr>
<tr>
<td>
<label for="wrap_claim_names">
Wrap long claim names
</label>
</td>
<td>
<input type="checkbox" id="wrap_claim_names">
</td>
</tr>
</table>
<div id="status"></div>
<button id="save">Save</button>
<button id="reset">Reset</button>
<script src="options.js"></script>
</body>
</html>