Erste Versuche mut Login - geht noch nicht ( duplicate error an der Mongo

This commit is contained in:
2025-08-12 15:23:48 +00:00
parent 7556c0792a
commit 2a9bcb50f7
6 changed files with 737 additions and 91 deletions

21
views/login.pug Normal file
View File

@@ -0,0 +1,21 @@
doctype html
html(lang="de")
head
meta(charset="utf-8")
meta(name="viewport" content="width=device-width,initial-scale=1")
title Login
link(rel="stylesheet", href="/styles.css")
body
h1 Login
if error
p.error #{error}
form(method="POST", action="/login")
label(for="email") Email:
input#email(type="email", name="email", required)
br
label(for="password") Passwort:
input#password(type="password", name="password", required)
br
button(type="submit") Einloggen
p
a(href="/register") Registrieren

21
views/register.pug Normal file
View File

@@ -0,0 +1,21 @@
doctype html
html(lang="de")
head
meta(charset="utf-8")
meta(name="viewport" content="width=device-width,initial-scale=1")
title Registrierung
link(rel="stylesheet", href="/styles.css")
body
h1 Registrierung
if error
p.error #{error}
form(method="POST", action="/register")
label(for="email") Email:
input#email(type="email", name="email", required)
br
label(for="password") Passwort:
input#password(type="password", name="password", required)
br
button(type="submit") Registrieren
p
a(href="/login") Zum Login