Authentication page layout with background.
import { AuthLayout } from "@/components/ui";Welcome back
<AuthLayout
title="Welcome back"
description="Enter your credentials to access your account"
>
<form className="space-y-4">
<FieldWrapper label="Email" required>
<Input type="email" placeholder="you@example.com" />
</FieldWrapper>
<FieldWrapper label="Password" required>
<Input type="password" />
</FieldWrapper>
<Button className="w-full">Sign In</Button>
</form>
</AuthLayout>Registration form layout
<AuthLayout title="Create an account" description="Start your 14-day free trial" showLogo> <form className="space-y-4"> <FieldWrapper label="Full Name" required> <Input placeholder="John Doe" /> </FieldWrapper> <FieldWrapper label="Email" required> <Input type="email" placeholder="you@example.com" /> </FieldWrapper> <FieldWrapper label="Password" required> <Input type="password" /> </FieldWrapper> <Button className="w-full">Create Account</Button> <p className="text-center text-sm text-muted-foreground"> Already have an account? <AppLink href="/login">Sign in</AppLink> </p> </form></AuthLayout>Configure your app with the features you need and download production-ready code.
Start Configuring