-
Notifications
You must be signed in to change notification settings - Fork 1
/
mac.html
74 lines (63 loc) · 1.41 KB
/
mac.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
<!DOCTYPE html>
<html>
<head>
<title>MAC Info</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<script type="text/javascript" src="ise-messages/ise-messages.js"></script>
<script type="text/javascript" src="mac.js"></script>
<style>
body {
background-color: #F9F9F9;
}
.container {
background-color: white;
min-width: 500px;
max-width: 1200px;
padding: 5px;
margin-bottom: 15px;
}
.navbar-header {
float: left;
text-align: center;
width: 100%;
}
.navbar-brand {
float:none;
}
.content {
padding: 10px;
}
.indent {
padding-left: 20px;
}
.table {
margin: 10px auto;
}
td {
max-width: 750px;
word-wrap: break-word; /* Internet Explorer 5.5+ */
}
pre {
display: none;
border: 2px #cccccc solid;
border-radius: 10px;
background-color: rgb(236, 236, 236);
padding: 10px;
}
</style>
</head>
<body>
<div class="container">
<nav class="navbar navbar-primary bg-primary">
<div class="navbar-header">
<div class="navbar-brand mb-0 h1 text-white" id="header">Endpoint Info</div>
</div>
</nav>
<div class="content" id="content"></div>
<div class="text-center">
<a href="#raw" id="show-raw"><strong>View RAW Attributes</strong></a>
<pre class="text-left" id="raw">none</pre>
</div>
</div>
</body>
</html>