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>
30 lines
953 B
HTML
30 lines
953 B
HTML
<!DOCTYPE html>
|
||
<html lang="de">
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
<title>Anmelden – Webklar Kundenbereich</title>
|
||
<link rel="stylesheet" href="/style.css">
|
||
</head>
|
||
<body>
|
||
<header><h1>Webklar Kundenbereich</h1></header>
|
||
<main>
|
||
<form id="login-form" class="card">
|
||
<label>E-Mail
|
||
<input type="email" name="email" id="email" required autocomplete="username">
|
||
</label>
|
||
<label>Passwort
|
||
<input type="password" name="password" id="password" required autocomplete="current-password">
|
||
</label>
|
||
<p id="login-error" class="error hidden"></p>
|
||
<button type="submit" id="login-btn">Anmelden</button>
|
||
</form>
|
||
<p class="muted">Zugangsdaten erhältst du von Webklar. Passwortänderungen erfolgen über das Ticketsystem.</p>
|
||
</main>
|
||
<script src="/app.js"></script>
|
||
<script>
|
||
initLoginPage();
|
||
</script>
|
||
</body>
|
||
</html>
|