First Commit - sieht schon gut aus

This commit is contained in:
rxf
2026-01-30 19:30:49 +01:00
commit 715f72907a
8 changed files with 2470 additions and 0 deletions

34
views/index.pug Normal file
View File

@@ -0,0 +1,34 @@
doctype html
html(lang='de')
head
meta(charset='UTF-8')
meta(name='viewport', content='width=device-width, initial-scale=1.0')
title Stromverbrauch Monitor
link(rel='stylesheet', href='/css/styles.css')
body
.container
h1 ⚡ Stromverbrauch Monitor
.form-container
form#verbrauchForm
.form-group
.form-field
label Collections auswählen:
.checkbox-group
label.checkbox-label
input#coll_maschinen(type='checkbox', value='maschinen', checked)
span Maschinen
label.checkbox-label
input#coll_auto(type='checkbox', value='auto', checked)
span Auto
.form-field
label(for='startDate') Von:
input#startDate(type='date', required)
.form-field
label(for='endDate') Bis:
input#endDate(type='date', required)
button(type='submit') Verbrauch anzeigen
#results.results-container
script(src='/js/script.js')