2016-09-11 23:07:18 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2018-01-27 23:28:20 +01:00
|
|
|
<head><meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
|
|
|
|
<title>WLED Settings</title>
|
2016-09-11 23:07:18 +02:00
|
|
|
<style>
|
2018-01-27 23:28:20 +01:00
|
|
|
:root {
|
|
|
|
--aCol: #D9B310;
|
|
|
|
--bCol: #0B3C5D;
|
|
|
|
--cCol: #1D2731;
|
|
|
|
--dCol: #328CC1;
|
|
|
|
--sCol: #000;
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
font-family: Verdana, Helvetica, sans-serif;
|
|
|
|
text-align: center;
|
|
|
|
background: var(--cCol);
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
background-attachment: fixed;
|
|
|
|
}
|
|
|
|
button {
|
|
|
|
background: var(--bCol);
|
|
|
|
color: var(--dCol);
|
|
|
|
border: 0.3ch solid var(--bCol);
|
|
|
|
display: inline-block;
|
|
|
|
filter: drop-shadow( -5px -5px 5px var(--sCol) );
|
|
|
|
font-size: 9vmin;
|
|
|
|
width: 95%;
|
|
|
|
margin-top: 2.4vh;
|
|
|
|
}
|
2016-09-11 23:07:18 +02:00
|
|
|
</style>
|
|
|
|
</head>
|
2018-01-27 23:28:20 +01:00
|
|
|
<body>
|
|
|
|
<form action="/settings/wifi" method="post"><button type="submit">WiFi Setup</button></form>
|
|
|
|
<form action="/settings/leds" method="post"><button type="submit">LED Preferences</button></form>
|
|
|
|
<form action="/settings/ui" method="post"><button type="submit">User Interface</button></form>
|
|
|
|
<form action="/settings/sync" method="post"><button type="submit">Sync Interfaces</button></form>
|
|
|
|
<form action="/settings/time" method="post"><button type="submit">Time & Macros</button></form>
|
|
|
|
<form action="/settings/sec" method="post"><button type="submit">Security & Updates</button></form>
|
2016-09-11 23:07:18 +02:00
|
|
|
</body>
|
|
|
|
</html>
|