2016-09-11 23:07:18 +02:00
|
|
|
<!DOCTYPE html>
|
2020-12-20 15:16:22 +01:00
|
|
|
<html lang="en">
|
2021-12-08 14:38:21 +01:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport"/>
|
2018-01-27 23:28:20 +01:00
|
|
|
<title>WLED Settings</title>
|
2022-01-28 16:31:28 +01:00
|
|
|
<script>
|
|
|
|
var d=document;
|
|
|
|
function gId(n){return d.getElementById(n);}
|
|
|
|
function S(){GetV();}
|
|
|
|
function GetV(){}
|
|
|
|
</script>
|
2016-09-11 23:07:18 +02:00
|
|
|
<style>
|
2018-01-27 23:28:20 +01:00
|
|
|
body {
|
|
|
|
text-align: center;
|
2020-05-17 20:59:00 +02:00
|
|
|
background: #222;
|
2020-12-20 15:16:22 +01:00
|
|
|
height: 100px;
|
2018-01-27 23:28:20 +01:00
|
|
|
margin: 0;
|
|
|
|
}
|
2018-06-24 01:20:15 +02:00
|
|
|
html {
|
2022-05-08 10:50:48 +02:00
|
|
|
--h: 9vh;
|
2018-06-24 01:20:15 +02:00
|
|
|
}
|
2018-01-27 23:28:20 +01:00
|
|
|
button {
|
2020-05-17 20:59:00 +02:00
|
|
|
background: #333;
|
|
|
|
color: #fff;
|
|
|
|
font-family: Verdana, Helvetica, sans-serif;
|
2022-05-08 10:50:48 +02:00
|
|
|
display: block;
|
2021-05-08 18:04:44 +02:00
|
|
|
border: 1px solid #333;
|
2021-11-17 17:28:52 +01:00
|
|
|
border-radius: var(--h);
|
2021-04-10 00:17:15 +02:00
|
|
|
font-size: 6vmin;
|
2020-05-17 20:59:00 +02:00
|
|
|
height: var(--h);
|
2022-01-28 16:31:28 +01:00
|
|
|
width: calc(100% - 40px);
|
2022-05-18 14:38:22 +02:00
|
|
|
margin: 2vh auto 0;
|
2022-05-08 10:50:48 +02:00
|
|
|
cursor: pointer;
|
2018-01-27 23:28:20 +01:00
|
|
|
}
|
2016-09-11 23:07:18 +02:00
|
|
|
</style>
|
|
|
|
</head>
|
2022-01-28 16:31:28 +01:00
|
|
|
<body onload="S()">
|
2022-05-08 10:50:48 +02:00
|
|
|
<button type=submit id="b" onclick="window.location='/'">Back</button>
|
|
|
|
<button type="submit" onclick="window.location='./settings/wifi'">WiFi Setup</button>
|
|
|
|
<button type="submit" onclick="window.location='./settings/leds'">LED Preferences</button>
|
|
|
|
<button type="submit" onclick="window.location='./settings/2D'">2D Configuration</button>
|
|
|
|
<button type="submit" onclick="window.location='./settings/ui'">User Interface</button>
|
|
|
|
<button id="dmxbtn" style="display: none;" type="submit" onclick="window.location='./settings/dmx'">DMX Output</button>
|
|
|
|
<button type="submit" onclick="window.location='./settings/sync'">Sync Interfaces</button>
|
|
|
|
<button type="submit" onclick="window.location='./settings/time'">Time & Macros</button>
|
|
|
|
<button type="submit" onclick="window.location='./settings/um'">Usermods</button>
|
|
|
|
<button type="submit" onclick="window.location='./settings/sec'">Security & Updates</button>
|
2016-09-11 23:07:18 +02:00
|
|
|
</body>
|
|
|
|
</html>
|