| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- import { Link, useSearch } from '@tanstack/react-router'
- import {
- Card,
- CardContent,
- CardDescription,
- CardFooter,
- CardHeader,
- CardTitle,
- } from '@/components/ui/card'
- import { AuthLayout } from '../auth-layout'
- import { UserAuthForm } from './components/user-auth-form'
- export function SignIn() {
- const { redirect } = useSearch({ from: '/(auth)/sign-in' })
- return (
- <AuthLayout>
- <Card className='max-w-sm gap-4'>
- <CardHeader>
- <CardTitle className='text-lg tracking-tight'>Sign in</CardTitle>
- <CardDescription>
- Enter your email and password below to log into{' '}
- <br className='max-sm:hidden' /> your account. Don't have an
- account?{' '}
- <Link
- to='/sign-up'
- className='text-nowrap underline underline-offset-4 hover:text-primary'
- >
- Sign Up
- </Link>
- </CardDescription>
- </CardHeader>
- <CardContent>
- <UserAuthForm redirectTo={redirect} />
- </CardContent>
- <CardFooter>
- <p className='px-8 text-center text-sm text-muted-foreground'>
- By clicking sign in, you agree to our{' '}
- <a
- href='/terms'
- className='underline underline-offset-4 hover:text-primary'
- >
- Terms of Service
- </a>{' '}
- and{' '}
- <a
- href='/privacy'
- className='underline underline-offset-4 hover:text-primary'
- >
- Privacy Policy
- </a>
- .
- </p>
- </CardFooter>
- </Card>
- </AuthLayout>
- )
- }
|