First commit - V 1.0.0
This commit is contained in:
33
views/index.pug
Normal file
33
views/index.pug
Normal file
@@ -0,0 +1,33 @@
|
||||
doctype html
|
||||
html(lang="de")
|
||||
head
|
||||
meta(charset="utf-8")
|
||||
meta(name="viewport" content="width=device-width,initial-scale=1")
|
||||
title ESP-ID + Sensornummer speichern
|
||||
link(rel="stylesheet", href="/styles.css")
|
||||
body
|
||||
h1 ESP-ID + Sensornummer speichern
|
||||
|
||||
.card
|
||||
label(for="espId") ESP-id:
|
||||
input#espId(placeholder="z.B. esp-1234")
|
||||
br
|
||||
br
|
||||
label(for="sensorNumber") Sensornummer:
|
||||
input#sensorNumber(placeholder="z.B. 42")
|
||||
br
|
||||
br
|
||||
button#saveBtn Speichern
|
||||
div#result(style="margin-top:10px")
|
||||
|
||||
.card
|
||||
h2 Gespeicherte Einträge
|
||||
div(style="margin-bottom:8px;")
|
||||
button#refreshBtn Aktualisieren
|
||||
| Seite:
|
||||
input#page(value="1" style="width:50px")
|
||||
| Limit:
|
||||
input#limit(value="25" style="width:50px")
|
||||
div#list
|
||||
|
||||
script(src="/global.js")
|
||||
Reference in New Issue
Block a user