Started working on march mode!
[citadel.git] / webcit-ng / static / index.html
1 <!DOCTYPE html>
2
3 <!-- 
4 ---- Copyright (c) 1996-2019 by Art Cancro and the citadel.org team.
5 ---- This program is open source software.  You can redistribute it and/or
6 ---- modify it under the terms of the GNU General Public License, version 3.
7 -->
8
9 <html>
10 <title>Citadel</title>
11 <meta charset="UTF-8">
12 <meta name="viewport" content="width=device-width, initial-scale=1">
13 <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.6/css/all.css">
14 <link rel="stylesheet" href="css/w3.css">
15 <link rel="stylesheet" href="css/webcit.css">
16
17 <body class="w3-light-grey">
18
19 <!-- Top container -->
20 <div id="navbar" class="w3-bar w3-top w3-black w3-large" style="z-index:4">
21         <button class="w3-bar-item w3-button w3-hide-large w3-hover-none w3-hover-text-light-grey" onclick="w3_open();"><i class="fa fa-bars"></i>  Menu</button>
22         <button class="w3-bar-item w3-button" onclick="gotonext();">tempgoto</button>
23         <span id="ctdl_banner_title" class="w3-bar-item w3-right">XXX</span>
24         <span id="lilo" class="w3-bar-item w3-right">Login</span>
25 </div>
26
27 <!-- Sidebar/menu -->
28 <nav class="w3-sidebar w3-collapse w3-white w3-animate-left" style="z-index:3;width:300px;" id="sidebar"><br>
29         <div class="w3-container w3-row">
30                 <div class="w3-col s4">
31                         <i class="fa fa-user-circle fa-3x"></i>
32                 </div>
33                 <div class="w3-col s8 w3-bar">
34                         <span id="current_user">Not logged in.</span><br>
35                         <a href="#" class="w3-bar-item w3-button"><i class="fa fa-envelope"></i></a>
36                         <a href="#" class="w3-bar-item w3-button"><i class="fa fa-user"></i></a>
37                         <a href="#" class="w3-bar-item w3-button"><i class="fa fa-cog"></i></a>
38                 </div>
39         </div>
40         <hr>
41         <div class="w3-container">
42                 <h5>Duh, STUFF</h5>
43         </div>
44         <div class="w3-bar-block">
45                 <a href="#" class="w3-bar-item w3-button w3-padding-16 w3-hide-large w3-dark-grey w3-hover-black" onclick="w3_close()" title="close menu"><i class="fa fa-remove fa-fw"></i>  Close Menu</a>
46                 <a href="#" class="w3-bar-item w3-button w3-padding w3-blue"><i class="fa fa-users fa-fw"></i>  Rooms</a>
47                 <div id="roomlist">rooms go here</div>
48                 <a href="#" class="w3-bar-item w3-button w3-padding"><i class="fa fa-eye fa-fw"></i>  Users</a>
49                 <a href="#" class="w3-bar-item w3-button w3-padding"><i class="fa fa-users fa-fw"></i>  Bombs</a>
50                 <a href="#" class="w3-bar-item w3-button w3-padding"><i class="fa fa-bullseye fa-fw"></i>  Missiles</a>
51                 <a href="#" class="w3-bar-item w3-button w3-padding"><i class="fa fa-diamond fa-fw"></i>  Tards</a>
52                 <a href="#" class="w3-bar-item w3-button w3-padding"><i class="fa fa-bell fa-fw"></i>  News</a>
53                 <a href="#" class="w3-bar-item w3-button w3-padding"><i class="fa fa-bank fa-fw"></i>  General</a>
54                 <a href="#" class="w3-bar-item w3-button w3-padding"><i class="fa fa-history fa-fw"></i>  History</a>
55                 <a href="#" class="w3-bar-item w3-button w3-padding"><i class="fa fa-cog fa-fw"></i>  Settings</a><br><br>
56         </div>
57 </nav>
58
59 <!-- Overlay effect when opening sidebar on small screens -->
60 <div class="w3-overlay w3-hide-large w3-animate-opacity" onclick="w3_close()" style="cursor:pointer" title="close side menu" id="myOverlay"></div>
61
62 <!-- MAIN PAGE CONTENT DIV -->
63 <div id="ctdl-main" class="w3-main" style="margin-left:300px;margin-top:43px;">
64 Loading...
65 <!-- End page content -->
66 </div>
67
68 <script type="text/javascript" src="js/login.js"></script>
69 <script type="text/javascript" src="js/main.js"></script>
70 <script type="text/javascript" src="js/views.js"></script>
71 <script>
72 // Get the Sidebar
73 var sidebar = document.getElementById("sidebar");
74
75 // Get the DIV with overlay effect
76 var overlayBg = document.getElementById("myOverlay");
77
78 // Toggle between showing and hiding the sidebar, and add overlay effect
79 function w3_open() {
80         if (sidebar.style.display === 'block') {
81                 sidebar.style.display = 'none';
82                 overlayBg.style.display = "none";
83         } else {
84                 sidebar.style.display = 'block';
85                 overlayBg.style.display = "block";
86         }
87 }
88
89 // Close the sidebar with the close button
90 function w3_close() {
91         sidebar.style.display = "none";
92         overlayBg.style.display = "none";
93 }
94
95 ctdl_startup();
96 </script>
97
98 </body>
99 </html>