123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>Powerbox Web Server</title>
- <script src="script.js"></script>
- <link rel="stylesheet" href="style.css">
- </head>
- <body onload="initialLoad()">
- <div class="topnav">
- <span>
- <h1>Powerbox Web Server
- <button class="toggle_button"
- style="float: right; background-color: red; margin-bottom: 15px; margin-right: 10px;"
- onclick="turnOffAll()">Abort</button>
- </h1>
- </span>
- <ul>
- <li><a href="/wifi.html">Wifi</a></li>
- </ul>
- </div>
-
- <section class="layout" id="content">
- </section>
- <button class="toggle_button" style="background-color: red; margin-top: 20px;" onclick="turnOffAll()">Turn off
- all</button>
- <!-- the properties window -->
- <div id="propertiesWindow" class="modal">
- <div class="modal-content">
- <div class="topnav">
- <h3 class="title">Power outlet properties
- <span onclick="closePropertiesWindow()" class="close">×</span>
- </h3>
- </div>
- <p id="propertiesContent" class="card"></p>
- </div>
- </div>
- </body>
- </html>
|