import { Trans } from '@lingui/react/macro';
import { Button, Link, Section, Text } from '../components';
import { TemplateDocumentImage } from './template-document-image';
export type TemplateAdminUserWelcomeProps = {
resetPasswordLink: string;
assetBaseUrl: string;
organisationName: string;
};
export const TemplateAdminUserWelcome = ({
resetPasswordLink,
assetBaseUrl,
organisationName,
}: TemplateAdminUserWelcomeProps) => {
return (
<>
Welcome to {organisationName}!
An administrator has created a Documenso account for you as part of {organisationName}.
To get started, please set your password by clicking the button below:
You can also copy and paste this link into your browser: {resetPasswordLink} (link
expires in 24 hours)
If you didn't expect this account or have any questions, please{' '}
contact support
.
>
);
};