-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 807 Bytes
/
index.html
File metadata and controls
24 lines (24 loc) · 807 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
<!DOCTYPE html>
<html>
<head>
<title>ServiceNow Instance Switcher</title>
<script src="jquery.js"></script>
<script src="script.js"></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="buttons">
<a id="ibmaabdev" class="button ibm blue">DEV</a>
<a id="ibmaabst" class="button ibm blue">ST</a>
<a id="ibmaabet" class="button ibm blue">ET</a>
<a id="ibmaabpr" class="button ibm blue">PR</a>
<a id="aabsiamdev" class="button abn green">DEV</a>
<a id="aabsiamst" class="button abn green">ST</a>
<a id="aabsiamet" class="button abn green">ET</a>
<a id="aabsiampr" class="button abn green">PR</a>
</div>
<div class="settings">
<a id="close" class="button">Close</a>
</div>
</body>
</html>