import { Trans } from '@lingui/react/macro'; import { Button, Link, Section, Text } from '../components'; import { TemplateDocumentImage } from './template-document-image'; export type TemplateAdminUserCreatedProps = { resetPasswordLink: string; assetBaseUrl: string; }; export const TemplateAdminUserCreated = ({ resetPasswordLink, assetBaseUrl }: TemplateAdminUserCreatedProps) => { return ( <>
Welcome to Documenso! An administrator has created a Documenso account for you. 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 .
); };