WLED/wled00/data/settings.htm

51 wiersze
1.9 KiB
HTML
Czysty Zwykły widok Historia

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">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport">
<title>WLED Settings</title>
2024-09-17 14:26:11 +00:00
<script src="common.js" async type="text/javascript"></script>
<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
}
</script>
2016-09-11 21:07:18 +00:00
<style>
body {
text-align: center;
background: #222;
2020-12-20 14:16:22 +00:00
height: 100px;
margin: 0;
}
html {
--h: 9vh;
}
button {
background: #333;
color: #fff;
font-family: Verdana, Helvetica, sans-serif;
display: block;
border: 1px solid #333;
2021-11-17 16:28:52 +00:00
border-radius: var(--h);
font-size: 6vmin;
height: var(--h);
width: calc(100% - 40px);
margin: 2vh auto 0;
cursor: pointer;
}
2016-09-11 21:07:18 +00:00
</style>
</head>
<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>