aboutsummaryrefslogtreecommitdiffstats
path: root/adminPage.html
blob: 9c88cbd50ab2d3835b218607d72e185aaee0d35d (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
46
47
48
49
50
51
52
<!--adminPage.html-->
<!DOCTYPE html>
<html lang="en">

<head>
    <meta 
        charset="utf-8"
        name="viewport" 
        content="width=device-width, initial-scale=1">
    <title>SIUE Zone Container Manager - Admin</title>

    <link rel="stylesheet" href="ZoneStyle.css"/>
    <link rel="stylesheet" href="node_modules/xterm/css/xterm.css"/>
    <script src="node_modules/xterm/lib/xterm.js"></script>
    <!-- <script type="module" src="./node_modules/xterm/lib/xterm.js"></script> -->
</head>

<body>

    <!-- sidebar on the left -->
    <div class="sidenav" id="sidebar">
        <ul>
            <li><a href="#">Create Template</a></li>
            <li><a href='#' onclick="toStudentView()">View as Student</a></li>
            <li><a href="#" onclick="logOut()">Log Out</a></li>
        </ul>
    </div>
    <!-- sidebar on the left ends -->
    <!-- main container -->
    <div class="terminalContainer" id="terminal"></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>
        var term = new Terminal({rows: 48, cols: 140});
        term.open(document.getElementById('terminal'));
        term.write('Hello from \x1B[1;3;31mxterm.js\x1B[0m $ ')
    </script> -->
    <script type="module" src="./functions.js"></script>

</body>

</html>