fakecheck

This commit is contained in:
2025-11-24 01:05:41 +01:00
parent f3cd26ba89
commit 09ab7bad59
5 changed files with 43 additions and 26 deletions

View File

@@ -15,13 +15,14 @@ if ($flash && !empty($flash['context']) && in_array($flash['context'], ['login',
$authView = $flash['context'];
}
?>
<section id="auth" class="border-t border-brand-border/70 bg-brand-primarySoft/20">
<div class="mx-auto max-w-xl px-4 sm:px-6 lg:px-8 py-16 sm:py-20">
<section id="auth" class="section-band section-band--reverse border-t border-brand-border/60 py-16 sm:py-20">
<div class="px-4 sm:px-6 lg:px-8">
<div class="section-shell w-full max-w-2xl mx-auto">
<div class="mb-8 text-center space-y-3">
<p class="text-xs font-heading font-semibold tracking-[0.3em] uppercase text-brand-primary" data-i18n="auth_kicker">
Account &amp; Login
</p>
<h1 class="font-heading text-2xl sm:text-3xl font-bold text-white" data-i18n="auth_title">
<h1 class="font-heading text-2xl sm:text-3xl font-bold text-brand-text" data-i18n="auth_title">
Melde dich bei USBCheck an
</h1>
<p class="text-sm sm:text-base text-brand-muted max-w-2xl mx-auto" data-i18n="auth_intro">
@@ -66,8 +67,8 @@ if ($flash && !empty($flash['context']) && in_array($flash['context'], ['login',
<!-- Login Panel -->
<div
id="authPanelLogin"
class="rounded-xl2 border border-brand-border bg-brand-surface/90 shadow-soft p-6 space-y-5 <?= $authView !== 'login' ? 'hidden' : ''; ?>">
<h2 class="font-heading text-lg font-semibold text-white" data-i18n="auth_login_title">
class="card-frame card-frame--soft space-y-5 <?= $authView !== 'login' ? 'hidden' : ''; ?>">
<h2 class="font-heading text-lg font-semibold text-brand-text" data-i18n="auth_login_title">
Login
</h2>
<p class="text-sm text-brand-muted" data-i18n="auth_login_text">
@@ -131,8 +132,8 @@ if ($flash && !empty($flash['context']) && in_array($flash['context'], ['login',
<!-- Register Panel -->
<div
id="authPanelRegister"
class="rounded-xl2 border border-brand-border bg-brand-surface/80 shadow-soft p-6 space-y-5 <?= $authView !== 'register' ? 'hidden' : ''; ?>">
<h2 class="font-heading text-lg font-semibold text-white" data-i18n="auth_register_title">
class="card-frame space-y-5 <?= $authView !== 'register' ? 'hidden' : ''; ?>">
<h2 class="font-heading text-lg font-semibold text-brand-text" data-i18n="auth_register_title">
Kostenlos registrieren
</h2>
<p class="text-sm text-brand-muted" data-i18n="auth_register_text">
@@ -206,5 +207,6 @@ if ($flash && !empty($flash['context']) && in_array($flash['context'], ['login',
</form>
</div>
</div>
</div>
</div>
</section>