mirror of
https://github.com/FranP-code/inbox-negotiator.git
synced 2025-10-13 00:42:26 +00:00
33 lines
860 B
Plaintext
33 lines
860 B
Plaintext
---
|
|
import "@/styles/globals.css";
|
|
import Layout from "../layouts/Layout.astro";
|
|
import { AuthForm } from "../components/AuthForm";
|
|
import { Navbar } from "../components/Navbar";
|
|
import { AuthGuard } from "../components/AuthGuard";
|
|
---
|
|
|
|
<Layout title="Sign In - InboxNegotiator">
|
|
<Navbar client:load />
|
|
|
|
<AuthGuard requireAuth={false} client:load>
|
|
<main
|
|
class="min-h-screen bg-gray-50 dark:bg-background flex items-center justify-center py-12 px-4 sm:px-6 lg:px-8"
|
|
>
|
|
<div class="w-full max-w-md">
|
|
<div class="text-center mb-8">
|
|
<h1
|
|
class="text-3xl font-bold text-gray-900 dark:text-foreground mb-2"
|
|
>
|
|
Sign In
|
|
</h1>
|
|
<p class="text-gray-600 dark:text-gray-300">
|
|
Access your debt resolution dashboard
|
|
</p>
|
|
</div>
|
|
|
|
<AuthForm mode="login" client:load />
|
|
</div>
|
|
</main>
|
|
</AuthGuard>
|
|
</Layout>
|