mirror of
https://github.com/documenso/documenso.git
synced 2025-11-09 20:12:31 +10:00
36 lines
1.0 KiB
TypeScript
36 lines
1.0 KiB
TypeScript
import { Trans } from '@lingui/react/macro';
|
|
|
|
import { Alert, AlertDescription } from '@documenso/ui/primitives/alert';
|
|
|
|
import { SignInForm } from '~/components/forms/signin';
|
|
import { BrandingLogo } from '~/components/general/branding-logo';
|
|
|
|
export type EmbedAuthenticationRequiredProps = {
|
|
email?: string;
|
|
returnTo: string;
|
|
};
|
|
|
|
export const EmbedAuthenticationRequired = ({
|
|
email,
|
|
returnTo,
|
|
}: EmbedAuthenticationRequiredProps) => {
|
|
return (
|
|
<div className="flex min-h-[100dvh] w-full items-center justify-center">
|
|
<div className="flex w-full max-w-md flex-col">
|
|
<BrandingLogo className="h-8" />
|
|
|
|
<Alert className="mt-8" variant="warning">
|
|
<AlertDescription>
|
|
<Trans>
|
|
To view this document you need to be signed into your account, please sign in to
|
|
continue.
|
|
</Trans>
|
|
</AlertDescription>
|
|
</Alert>
|
|
|
|
<SignInForm className="mt-4" initialEmail={email} returnTo={returnTo} />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|