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>
29 lines
829 B
HTML
29 lines
829 B
HTML
<!DOCTYPE html>
|
||
<html lang="de">
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
<title>Meine Projekte – Webklar Kundenbereich</title>
|
||
<link rel="stylesheet" href="/style.css">
|
||
</head>
|
||
<body>
|
||
<header>
|
||
<h1>Meine Website-Projekte</h1>
|
||
<div>
|
||
<span class="meta" id="customer-meta"></span>
|
||
<button type="button" class="link-btn" id="logout-btn">Abmelden</button>
|
||
</div>
|
||
</header>
|
||
<main>
|
||
<p id="load-error" class="error hidden"></p>
|
||
<p id="loading" class="muted">Projekte werden geladen…</p>
|
||
<ul id="projects" class="projects hidden"></ul>
|
||
<p id="empty" class="card hidden">Noch keine Website-Projekte zugewiesen.</p>
|
||
</main>
|
||
<script src="/app.js"></script>
|
||
<script>
|
||
initDashboardPage();
|
||
</script>
|
||
</body>
|
||
</html>
|