59c35ce39f
Flask-session login scoped to one client_id (never a request param), self-service + operator-triggered password reset via single-use tokens, and an Owner accounts tab on the CRM dashboard. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="robots" content="noindex" />
|
|
<title>Mein Konto — {{ client.business_name if client else '' }}</title>
|
|
<style>
|
|
:root {
|
|
--brand: #0f8a7e;
|
|
--bg: #fff; --ink: #16302f; --muted: #5d716f; --line: #e3eae9;
|
|
}
|
|
* { box-sizing: border-box; }
|
|
body { margin: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
|
|
background: var(--bg); color: var(--ink); padding: 20px; max-width: 480px; }
|
|
h1 { font-size: 1.2rem; margin: 0 0 18px; }
|
|
.card { border: 1px solid var(--line); border-radius: 12px; padding: 20px; background: #f6faf9; }
|
|
.muted { color: var(--muted); font-size: .85rem; }
|
|
a { color: var(--brand); }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>{{ client.business_name if client else 'Mein Konto' }}</h1>
|
|
<div class="card">
|
|
<p>Sie sind angemeldet.</p>
|
|
<p class="muted">Kalender, Buchungen und Einstellungen folgen hier.</p>
|
|
</div>
|
|
<p class="muted"><a href="{{ url_for('owner_auth.logout') }}">Abmelden</a></p>
|
|
</body>
|
|
</html>
|