feat(auth): registration and login

This commit is contained in:
2026-02-21 08:29:53 +01:00
parent 795c7a835f
commit 4fb95c872b
16 changed files with 133 additions and 130 deletions

View File

@@ -2,9 +2,11 @@
@section('content')
<div class="px-4 py-8 md:px-6 md:py-10">
<div class="mx-auto w-full max-w-xl rounded-2xl border border-sb-line bg-panel-dark shadow-sb p-6 md:p-8">
<div class="mb-4 text-sm text-sb-muted">
<p class="font-medium text-white">Check your inbox</p>
<div class="flex-1 flex items-center justify-center px-6 py-16 min-h-[calc(100vh-4rem)] box-border">
<div class="max-w-5xl w-full">
<div class="rounded-2xl border border-white/10 bg-slate-900/70 backdrop-blur shadow-xl p-8 auth-card">
<div class="mb-4 text-sm text-white/80">
<p class="font-medium text-white">Check your inbox</p>
@if($email !== '')
<p class="mt-1">We sent a verification link to <strong class="text-white">{{ $email }}</strong>.</p>
<p class="mt-1">Click the link in that email to continue setup.</p>
@@ -83,4 +85,4 @@
}, 1000);
});
</script>
@endsection
@endsection