mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
34 lines
847 B
TypeScript
34 lines
847 B
TypeScript
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>
|
|
);
|
|
}
|