-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
92 lines (84 loc) · 3.23 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://cdn.metroui.org.ua/v4/css/metro-all.min.css">
<link href="metro-icons.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="main.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>
Home
</title>
</head>
<style>
.item1 { grid-area: header; }
.item2 { grid-area: menu; }
.item3 { grid-area: main; }
.item4 { grid-area: right; }
.item5 { grid-area: footer; }
.grid-container {
display: grid;
grid-template-areas:
'header header header header header header'
'menu main main main right right'
'menu footer footer footer footer footer';
grid-gap: 10px;
background-color: #f8f8f8;
padding: 10px;
}
.grid-container > div {
background-color: rgba(248, 248, 248, 0.8);
text-align: left;
padding: 20px 0;
font-size: 18px;
}
a {
text-decoration:none;
color: inherit;
}
</style>
<body style="background-color: #f8f8f8;" onload="checkLoggedIn();">
<div class="grid-container">
<div class="item1">
<img src="Images/NOCLogo.png" width="25%" >
<h2 style="text-align: center;">Home</h2>
</div>
<div class="item2">
<ul class="sidenav-simple sidenav-simple-expand-fs">
<li><a href="home.html">
<span class="mif-home icon"></span>
<span class="title">Home</span>
</a></li>
<li><a href="add_new_host.html">
<span class="mif-laptop icon"></span>
<span class="title">Add a Host</span>
</a></li>
<li><a href="edit_inventories.html">
<span class="mif-list icon"></span>
<span class="title">Edit Inventory</span>
</a></li>
<li><a href="default_linux.html">
<span class="mif-linux icon"></span>
<span class="title">Linux</span>
</a></li>
<li><a href="default_windows.html">
<span class="mif-windows icon"></span>
<span class="title">Windows</span>
</a></li>
<li><a onclick="logout(event)">
<span class="mif-keyboard-return icon"></span>
<span class="title">Log Out</span>
</a></li>
</ul>
</div>
<div class="item3">
<h1>Welcome to the NOCS multi-dimensional desktop management automation system!
</h1><br>
<br>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://cdn.metroui.org.ua/v4/js/metro.min.js"></script>
</body>
</html>