Implementiere Kundenportal mit zentraler Appwrite-Anbindung.

Express-Server für Appwrite-Auth, Session, Projekt-Dashboard und Gitea-Webhook; statisches Frontend und Schema-Dokumentation für woms-database.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-05-22 23:38:38 +02:00
commit f31727aeb4
23 changed files with 2056 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Anmelden <20> Webklar Kundenbereich</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header><h1>Webklar Kundenbereich</h1></header>
<main>
<form method="post" action="login.html" class="card">
<label>E-Mail <input type="email" name="email" required></label>
<label>Passwort <input type="password" name="password" required></label>
<button type="submit">Anmelden</button>
</form>
<p><a href="forgot-password.html">Passwort vergessen</a></p></main>
</body>
</html>