2016-09-11 21:07:18 +00:00
|
|
|
<!DOCTYPE html>
|
2020-12-20 14:16:22 +00:00
|
|
|
<html lang="en">
|
2021-12-08 13:38:21 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2023-10-04 19:37:10 +00:00
|
|
|
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport">
|
2018-01-27 22:28:20 +00:00
|
|
|
<title>WLED Settings</title>
|
2024-09-17 14:26:11 +00:00
|
|
|
<script src="common.js" async type="text/javascript"></script>
|
2022-01-28 15:31:28 +00:00
|
|
|
<script>
|
2023-06-04 16:40:29 +00:00
|
|
|
function S() {
|
2024-09-17 14:26:11 +00:00
|
|
|
getLoc();
|
2023-06-04 16:40:29 +00:00
|
|
|
loadJS(getURL('/settings/s.js?p=0'), false); // If we set async false, file is loaded and executed, then next statement is processed
|
|
|
|
}
|
2022-01-28 15:31:28 +00:00
|
|
|
</script>
|
2016-09-11 21:07:18 +00:00
|
|
|
<style>
|
2018-01-27 22:28:20 +00:00
|
|
|
body {
|
|
|
|
text-align: center;
|
2020-05-17 18:59:00 +00:00
|
|
|
background: #222;
|
2020-12-20 14:16:22 +00:00
|
|
|
height: 100px;
|
2018-01-27 22:28:20 +00:00
|
|
|
margin: 0;
|
|
|
|
}
|
2018-06-23 23:20:15 +00:00
|
|
|
html {
|
2022-05-08 08:50:48 +00:00
|
|
|
--h: 9vh;
|
2018-06-23 23:20:15 +00:00
|
|
|
}
|
2018-01-27 22:28:20 +00:00
|
|
|
button {
|
2020-05-17 18:59:00 +00:00
|
|
|
background: #333;
|
|
|
|
color: #fff;
|
|
|
|
font-family: Verdana, Helvetica, sans-serif;
|
2022-05-08 08:50:48 +00:00
|
|
|
display: block;
|
2021-05-08 16:04:44 +00:00
|
|
|
border: 1px solid #333;
|
2021-11-17 16:28:52 +00:00
|
|
|
border-radius: var(--h);
|
2021-04-09 22:17:15 +00:00
|
|
|
font-size: 6vmin;
|
2020-05-17 18:59:00 +00:00
|
|
|
height: var(--h);
|
2022-01-28 15:31:28 +00:00
|
|
|
width: calc(100% - 40px);
|
2022-05-18 12:38:22 +00:00
|
|
|
margin: 2vh auto 0;
|
2022-05-08 08:50:48 +00:00
|
|
|
cursor: pointer;
|
2018-01-27 22:28:20 +00:00
|
|
|
}
|
2016-09-11 21:07:18 +00:00
|
|
|
</style>
|
|
|
|
</head>
|
2022-01-28 15:31:28 +00:00
|
|
|
<body onload="S()">
|
2023-06-04 16:40:29 +00:00
|
|
|
<button type=submit id="b" onclick="window.location=getURL('/')">Back</button>
|
|
|
|
<button type="submit" onclick="window.location=getURL('/settings/wifi')">WiFi Setup</button>
|
|
|
|
<button type="submit" onclick="window.location=getURL('/settings/leds')">LED Preferences</button>
|
2024-02-06 13:47:20 +00:00
|
|
|
<button id="2dbtn" type="submit" onclick="window.location=getURL('/settings/2D')">2D Configuration</button>
|
2023-06-04 16:40:29 +00:00
|
|
|
<button type="submit" onclick="window.location=getURL('/settings/ui')">User Interface</button>
|
|
|
|
<button id="dmxbtn" style="display:none;" type="submit" onclick="window.location=getURL('/settings/dmx')">DMX Output</button>
|
|
|
|
<button type="submit" onclick="window.location=getURL('/settings/sync')">Sync Interfaces</button>
|
|
|
|
<button type="submit" onclick="window.location=getURL('/settings/time')">Time & Macros</button>
|
|
|
|
<button type="submit" onclick="window.location=getURL('/settings/um')">Usermods</button>
|
|
|
|
<button type="submit" onclick="window.location=getURL('/settings/sec')">Security & Updates</button>
|
2016-09-11 21:07:18 +00:00
|
|
|
</body>
|
|
|
|
</html>
|