aboutsummaryrefslogtreecommitdiffstats
path: root/index.html
blob: 4df61fe12e915bc70547ea8baf3d40ff6e75c64a (plain)
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
<!--index.html-->
<!DOCTYPE html>
<html lang="en">

<head>
    <title>SIUE Zone Container Manager</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="ZoneStyle.css">
</head>

<body>

    <!-- sidebar on the left -->
    <div class="sidenav" id="sidebar">
        <ul>
            <li><a href="#" onclick="logOut()">Log Out</a></li>
        </ul>
    </div>
    <!-- sidebar on the left ends -->
    <!-- main container -->
    <div class="terminalContainer">
        <h2>Container</h2>
        <p>Container will go here</p>
    </div>
    <!-- main container ends-->
    <!-- topology summary -->
    <div class="topolSumContainer">
        <h2>Topology Summary</h2>
        <p>Topology summary will go here</p>
    </div>
    <!-- topology summary ends-->
    <!-- container summary -->
    <div class="containSumContainer">
        <h2>Container Summary</h2>
        <p>Container summary will go here</p>
    </div>

    <script>
        function logOut() {
            location.replace("login.html")
        }
    </script>
</body>

</html>