mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
40 lines
1.2 KiB
TypeScript
40 lines
1.2 KiB
TypeScript
import { Button, Section, Text } from '../components';
|
|
import { TemplateDocumentImage } from './template-document-image';
|
|
|
|
export type TemplateForgotPasswordProps = {
|
|
resetPasswordLink: string;
|
|
assetBaseUrl: string;
|
|
};
|
|
|
|
export const TemplateForgotPassword = ({
|
|
resetPasswordLink,
|
|
assetBaseUrl,
|
|
}: TemplateForgotPasswordProps) => {
|
|
return (
|
|
<>
|
|
<TemplateDocumentImage className="mt-6" assetBaseUrl={assetBaseUrl} />
|
|
|
|
<Section className="flex-row items-center justify-center">
|
|
<Text className="text-primary mx-auto mb-0 max-w-[80%] text-center text-lg font-semibold">
|
|
Forgot your password?
|
|
</Text>
|
|
|
|
<Text className="my-1 text-center text-base text-slate-400">
|
|
That's okay, it happens! Click the button below to reset your password.
|
|
</Text>
|
|
|
|
<Section className="mb-6 mt-8 text-center">
|
|
<Button
|
|
className="bg-documenso-500 inline-flex items-center justify-center rounded-lg px-6 py-3 text-center text-sm font-medium text-black no-underline"
|
|
href={resetPasswordLink}
|
|
>
|
|
Reset Password
|
|
</Button>
|
|
</Section>
|
|
</Section>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default TemplateForgotPassword;
|