4e8030bd81
- centered Settings buttons - disallow preset ID >250
50 lines
1.7 KiB
HTML
50 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport"/>
|
|
<title>WLED Settings</title>
|
|
<script>
|
|
var d=document;
|
|
function gId(n){return d.getElementById(n);}
|
|
function S(){GetV();}
|
|
function GetV(){}
|
|
</script>
|
|
<style>
|
|
body {
|
|
text-align: center;
|
|
background: #222;
|
|
height: 100px;
|
|
margin: 0;
|
|
}
|
|
html {
|
|
--h: 9vh;
|
|
}
|
|
button {
|
|
background: #333;
|
|
color: #fff;
|
|
font-family: Verdana, Helvetica, sans-serif;
|
|
display: block;
|
|
border: 1px solid #333;
|
|
border-radius: var(--h);
|
|
font-size: 6vmin;
|
|
height: var(--h);
|
|
width: calc(100% - 40px);
|
|
margin: 2vh auto 0;
|
|
cursor: pointer;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body onload="S()">
|
|
<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>
|
|
</body>
|
|
</html> |