Files
sign/apps/web/src/app/(unauthenticated)/check-email/page.tsx

21 lines
524 B
TypeScript
Raw Normal View History

2023-09-18 10:18:33 +00:00
import Link from 'next/link';
2023-09-19 13:34:54 +00:00
import { Button } from '@documenso/ui/primitives/button';
2023-09-18 10:18:33 +00:00
export default function ForgotPasswordPage() {
return (
2023-09-19 13:34:54 +00:00
<div>
<h1 className="text-4xl font-semibold">Email sent!</h1>
2023-09-18 10:18:33 +00:00
2023-09-19 13:34:54 +00:00
<p className="text-muted-foreground mb-4 mt-2 text-sm">
A password reset email has been sent, if you have an account you should see it in your inbox
shortly.
</p>
2023-09-18 10:18:33 +00:00
2023-09-19 13:34:54 +00:00
<Button asChild>
<Link href="/signin">Return to sign in</Link>
</Button>
</div>
2023-09-18 10:18:33 +00:00
);
}