-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
36 lines (34 loc) · 743 Bytes
/
options.html
File metadata and controls
36 lines (34 loc) · 743 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Preview Links Options</title>
<style>
label {
display: block;
}
input {
width: 500px;
margin-bottom: 10px;
}
#status {
padding-left: 10px;
}
</style>
</head>
<body>
<div>
<label for="manageCases">Manage Cases</label>
<input id="manageCases" type="text" />
</div>
<div>
<label for="manageOrg">Manage Org</label>
<input id="manageOrg" type="text" />
</div>
<div>
<label for="ccdAdminWeb">CCD Admin Web</label>
<input id="ccdAdminWeb" type="text" />
</div>
<button id="save">Save</button><span id="status"></span>
<script src="options.js"></script>
</body>
</html>