mirror of
https://github.com/documenso/documenso.git
synced 2025-11-22 20:51:33 +10:00
34 lines
879 B
TypeScript
34 lines
879 B
TypeScript
import Link from 'next/link';
|
|
|
|
import { SignInForm } from '~/components/forms/signin';
|
|
|
|
export default function SignInPage() {
|
|
return (
|
|
<div>
|
|
<h1 className="text-4xl font-semibold">Sign in to your account</h1>
|
|
|
|
<p className="text-muted-foreground/60 mt-2 text-sm">
|
|
Welcome back, we are lucky to have you.
|
|
</p>
|
|
|
|
<SignInForm className="mt-4" />
|
|
|
|
<p className="text-muted-foreground mt-6 text-center text-sm">
|
|
Don't have an account?{' '}
|
|
<Link href="/signup" className="text-primary duration-200 hover:opacity-70">
|
|
Sign up
|
|
</Link>
|
|
</p>
|
|
|
|
<p className="mt-2.5 text-center">
|
|
<Link
|
|
href="/forgot-password"
|
|
className="text-muted-foreground text-sm duration-200 hover:opacity-70"
|
|
>
|
|
Forgotten your password?
|
|
</Link>
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|