aboutsummaryrefslogtreecommitdiffstats
path: root/index.html
diff options
context:
space:
mode:
authorAnthony Schneider <tonyschneider3@gmail.com>2022-02-11 01:12:10 -0600
committerAnthony Schneider <tonyschneider3@gmail.com>2022-02-11 01:12:10 -0600
commit94862321e2e4a58e3209c037e8061f0435b3aa82 (patch)
tree226d636e22f32a270aa61502bb4319c066ce268a /index.html
parentacf24c9bdaee0fbbff45c358f2d704da908b0080 (diff)
Added functionality to some of the buttons. Mostly just making sure I can push before the meeting.
Diffstat (limited to 'index.html')
-rw-r--r--index.html67
1 files changed, 36 insertions, 31 deletions
diff --git a/index.html b/index.html
index 9a52839..4df61fe 100644
--- a/index.html
+++ b/index.html
@@ -2,39 +2,44 @@
<!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>
+<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>
+<body>
- <!-- sidebar on the left -->
- <div class="sidenav" id="sidebar">
- <ul>
- <li><a href="#">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>
+ <!-- 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>
- </body>
+ <script>
+ function logOut() {
+ location.replace("login.html")
+ }
+ </script>
+</body>
</html> \ No newline at end of file