mirror of
https://github.com/documenso/documenso.git
synced 2025-11-17 02:01:33 +10:00
28 lines
725 B
TypeScript
28 lines
725 B
TypeScript
import type { Metadata } from 'next';
|
|
import Link from 'next/link';
|
|
|
|
import { Button } from '@documenso/ui/primitives/button';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Forgot password',
|
|
};
|
|
|
|
export default function ForgotPasswordPage() {
|
|
return (
|
|
<div className="w-screen max-w-lg px-4">
|
|
<div className="w-full">
|
|
<h1 className="text-4xl font-semibold">Email sent!</h1>
|
|
|
|
<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>
|
|
|
|
<Button asChild>
|
|
<Link href="/signin">Return to sign in</Link>
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|