mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 15:53:02 +10:00
34 lines
930 B
TypeScript
34 lines
930 B
TypeScript
import { Trans } from '@lingui/macro';
|
|
import { Link } from 'react-router';
|
|
|
|
import { Button } from '@documenso/ui/primitives/button';
|
|
|
|
export function meta() {
|
|
return [{ title: 'Reset Password' }];
|
|
}
|
|
|
|
export default function ResetPasswordPage() {
|
|
return (
|
|
<div className="w-screen max-w-lg px-4">
|
|
<div className="w-full">
|
|
<h1 className="text-3xl font-semibold">
|
|
<Trans>Unable to reset password</Trans>
|
|
</h1>
|
|
|
|
<p className="text-muted-foreground mt-2 text-sm">
|
|
<Trans>
|
|
The token you have used to reset your password is either expired or it never existed. If
|
|
you have still forgotten your password, please request a new reset link.
|
|
</Trans>
|
|
</p>
|
|
|
|
<Button className="mt-4" asChild>
|
|
<Link to="/signin">
|
|
<Trans>Return to sign in</Trans>
|
|
</Link>
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|