-
Notifications
You must be signed in to change notification settings - Fork 0
/
link.html
132 lines (119 loc) · 5.36 KB
/
link.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Links</title>
</head>
<style>
button {
padding: 5px 10px;
font-size: 12px;
border: none;
border-radius: 4px;
cursor: pointer;
background-color: #007bff;
color: white;
display: inline-block;
margin-left: 10px;
}
button:hover {
background-color: #0056b3;
}
p {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: small;
margin-top: 0px;
margin-bottom: 0px;
}
</style>
<body>
<p style="font-weight: bold; margin-bottom: 0px;">Genesis</p>
<p>https://genesisptl.t-mobile.com/search-subscriber <button onclick="copyToClipboard('https://genesisptl.t-mobile.com/search-subscriber')">Copy</button></p>
<hr>
<p style="font-weight: bold; margin-bottom: 0px;">Pinninator</p>
<p>https://beta.launchpad.t-mobile.com/tpop-atlas-lite <button onclick="copyToClipboard('https://beta.launchpad.t-mobile.com/tpop-atlas-lite')">Copy</button></p>
<hr>
<p style="font-weight: bold; margin-bottom: 0px;">Aurora</p>
<p>https://t-mobile.archerirm.us/Default.aspx <button onclick="copyToClipboard('https://t-mobile.archerirm.us/Default.aspx')">Copy</button></p>
<hr>
<p style="font-weight: bold; margin-bottom: 0px;">iPort</p>
<p>https://iportproduction.t-mobile.com/iport/cases/search <button onclick="copyToClipboard('https://iportproduction.t-mobile.com/iport/cases/search')">Copy</button></p>
<hr>
<script>
function copyToClipboard(text) {
var dummy = document.createElement("textarea");
document.body.appendChild(dummy);
dummy.value = text;
dummy.select();
document.execCommand("copy");
document.body.removeChild(dummy);
if (text == 'https://genesisptl.t-mobile.com/search-subscriber') {
tooltip = document.createElement('div');
tooltip.textContent = "copied";
tooltip.style.position = 'fixed';
tooltip.style.top = '50%';
tooltip.style.left = '50%';
tooltip.style.transform = 'translate(-50%, -50%)';
tooltip.style.padding = '10px';
tooltip.style.background = 'black';
tooltip.style.color = 'white';
tooltip.style.borderRadius = '5px';
tooltip.style.zIndex = '9999';
document.body.appendChild(tooltip);
setTimeout(() => {
tooltip.style.display = 'none';
}, 1000);
} else if (text == 'https://beta.launchpad.t-mobile.com/tpop-atlas-lite') {
tooltip = document.createElement('div');
tooltip.textContent = "copied";
tooltip.style.position = 'fixed';
tooltip.style.top = '50%';
tooltip.style.left = '50%';
tooltip.style.transform = 'translate(-50%, -50%)';
tooltip.style.padding = '10px';
tooltip.style.background = 'black';
tooltip.style.color = 'white';
tooltip.style.borderRadius = '5px';
tooltip.style.zIndex = '9999';
document.body.appendChild(tooltip);
setTimeout(() => {
tooltip.style.display = 'none';
}, 1000);
} else if (text == 'https://t-mobile.archerirm.us/Default.aspx') {
tooltip = document.createElement('div');
tooltip.textContent = "copied";
tooltip.style.position = 'fixed';
tooltip.style.top = '50%';
tooltip.style.left = '50%';
tooltip.style.transform = 'translate(-50%, -50%)';
tooltip.style.padding = '10px';
tooltip.style.background = 'black';
tooltip.style.color = 'white';
tooltip.style.borderRadius = '5px';
tooltip.style.zIndex = '9999';
document.body.appendChild(tooltip);
setTimeout(() => {
tooltip.style.display = 'none';
}, 1000);
} else if (text == 'https://iportproduction.t-mobile.com/iport/cases/search') {
tooltip = document.createElement('div');
tooltip.textContent = "copied";
tooltip.style.position = 'fixed';
tooltip.style.top = '50%';
tooltip.style.left = '50%';
tooltip.style.transform = 'translate(-50%, -50%)';
tooltip.style.padding = '10px';
tooltip.style.background = 'black';
tooltip.style.color = 'white';
tooltip.style.borderRadius = '5px';
tooltip.style.zIndex = '9999';
document.body.appendChild(tooltip);
setTimeout(() => {
tooltip.style.display = 'none';
}, 1000);
}
}
</script>
</body>
</html>