""" School Module - Parent Onboarding Page QR code landing page for parent registration """ from ..styles import SCHOOL_BASE_STYLES, ONBOARDING_STYLES from ..templates import COMMON_SCRIPTS def parent_onboarding() -> str: """Parent onboarding page (QR code landing)""" # Onboarding page uses its own simplified styles without sidebar styles = f""" :root {{ --bp-primary: #6C1B1B; --bp-bg: #F8F8F8; --bp-surface: #FFFFFF; --bp-text: #4A4A4A; --bp-text-muted: #6B6B6B; --bp-accent: #5ABF60; --bp-border: #E0E0E0; }} * {{ box-sizing: border-box; margin: 0; padding: 0; }} {ONBOARDING_STYLES} """ content = '''

QR-Code wird validiert...

''' scripts = ''' ''' # This page doesn't use the standard base template with sidebar return f''' BreakPilot – Eltern-Onboarding {content} {scripts} '''