mirror of
https://github.com/documenso/documenso.git
synced 2026-07-13 06:25:01 +10:00
43 lines
1.4 KiB
TypeScript
43 lines
1.4 KiB
TypeScript
import { env } from '@documenso/lib/utils/env';
|
|
import { Trans } from '@lingui/react/macro';
|
|
|
|
import { Button, Section, Text } from '../components';
|
|
import { TemplateDocumentImage } from './template-document-image';
|
|
|
|
export interface TemplateResetPasswordProps {
|
|
userName: string;
|
|
userEmail: string;
|
|
assetBaseUrl: string;
|
|
}
|
|
|
|
export const TemplateResetPassword = ({ assetBaseUrl }: TemplateResetPasswordProps) => {
|
|
const NEXT_PUBLIC_WEBAPP_URL = env('NEXT_PUBLIC_WEBAPP_URL');
|
|
|
|
return (
|
|
<>
|
|
<TemplateDocumentImage className="mt-6" assetBaseUrl={assetBaseUrl} />
|
|
|
|
<Section className="flex-row items-center justify-center">
|
|
<Text className="mx-auto mb-0 max-w-[80%] text-center font-semibold text-foreground text-lg">
|
|
<Trans>Password updated!</Trans>
|
|
</Text>
|
|
|
|
<Text className="my-1 text-center text-base text-muted-foreground">
|
|
<Trans>Your password has been updated.</Trans>
|
|
</Text>
|
|
|
|
<Section className="mt-8 mb-6 text-center">
|
|
<Button
|
|
className="inline-flex items-center justify-center rounded-lg bg-primary px-6 py-3 text-center font-medium text-primary-foreground text-sm no-underline"
|
|
href={`${NEXT_PUBLIC_WEBAPP_URL ?? 'http://localhost:3000'}/signin`}
|
|
>
|
|
<Trans>Sign In</Trans>
|
|
</Button>
|
|
</Section>
|
|
</Section>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default TemplateResetPassword;
|