This commit is contained in:
Mythie
2025-01-02 15:33:37 +11:00
committed by David Nguyen
parent 9183f668d3
commit f7a98180d7
413 changed files with 29538 additions and 1606 deletions

View File

@ -0,0 +1,33 @@
import { Trans } from '@lingui/macro';
import { Link } from 'react-router';
import { Button } from '@documenso/ui/primitives/button';
export function meta() {
return [{ 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">
<Trans>Email sent!</Trans>
</h1>
<p className="text-muted-foreground mb-4 mt-2 text-sm">
<Trans>
A password reset email has been sent, if you have an account you should see it in your
inbox shortly.
</Trans>
</p>
<Button asChild>
<Link to="/signin">
<Trans>Return to sign in</Trans>
</Link>
</Button>
</div>
</div>
);
}