update
Took 7 hours 48 minutes
This commit is contained in:
@ -1,6 +1,28 @@
|
||||
extends layout
|
||||
|
||||
block setup
|
||||
div#setupLEDDiv
|
||||
h1 LED-Einstellungen
|
||||
div.inputGroup
|
||||
label(onclick="document.getElementById('ledCheckbox').checked = !document.getElementById('ledCheckbox').checked;") Aktivieren
|
||||
input#ledCheckbox.input(type="checkbox")
|
||||
div.inputGroup
|
||||
label GPIO-Pin
|
||||
input#ledGPIO.input(type="number" value="22" style="width:15%" disabled="disabled")
|
||||
div.inputGroup
|
||||
label Ambiente Farbe
|
||||
input#ambientColor.input(type="color" value="#05445E" style="width:15%" disabled="disabled")
|
||||
|
||||
div#setupExtraDiv
|
||||
h1 Erweiterte Einstellungen
|
||||
div.inputGroup
|
||||
label(onclick="document.getElementById('allowRemoteCheckbox').checked = !document.getElementById('allowRemoteCheckbox').checked;") Remote-Verbindungen erlauben
|
||||
input#allowRemoteCheckbox.input(type="checkbox")
|
||||
div.inputGroup
|
||||
label(onclick="document.getElementById('hotspotCheckbox').checked = !document.getElementById('hotspotCheckbox').checked;") Ohne WiFi Hotspot aktivieren
|
||||
input#hotspotCheckbox.input(type="checkbox")
|
||||
|
||||
|
||||
div#setupContainersDiv
|
||||
h1 Behälter
|
||||
// Setup
|
||||
@ -9,32 +31,7 @@ block setup
|
||||
div#setupContainers
|
||||
|
||||
|
||||
div#setupLEDDiv
|
||||
h1 LED-Einstellungen
|
||||
div.inputGroup
|
||||
label Aktivieren
|
||||
input.input(type="checkbox")
|
||||
div.inputGroup
|
||||
label GPIO-Pin
|
||||
input.input(type="number" value="22" style="width:15%" disabled="disabled")
|
||||
div.inputGroup
|
||||
label Ambiente Farbe
|
||||
input.input(type="color" value="#05445e" style="width:15%" disabled="disabled")
|
||||
|
||||
div#setupExtraDiv
|
||||
h1 Erweiterte Einstellungen
|
||||
div.inputGroup
|
||||
label Remote-Verbindungen erlauben
|
||||
input.input(type="checkbox" id="setup_remoteCheckbox")
|
||||
div.inputGroup
|
||||
label Ohne WiFi Hotspot aktivieren
|
||||
input.input(type="checkbox" id="setup_hotspotCheckbox")
|
||||
div.inputGroup
|
||||
label Ohne WiFi Hotspot aktivieren
|
||||
input.input(type="checkbox" id="setup_hotspotCheckbox")
|
||||
|
||||
|
||||
button.btn.btn-success(style="grid-row: span 1; grid-column: span 2; border-radius: 15px; font-size: 1.2em;") Speichern
|
||||
button.btn.btn-success#setup_saveBtn(style="grid-row: span 1; grid-column: span 2; border-radius: 15px; font-size: 1.2em;") Speichern
|
||||
|
||||
block menu
|
||||
// Menu
|
||||
|
Reference in New Issue
Block a user