Files
astuto/app/javascript/components/TenantSignUp/ConfirmSignUpPage.tsx
2024-03-02 18:36:22 +01:00

26 lines
578 B
TypeScript

import * as React from 'react';
import Box from '../common/Box';
interface Props {
subdomain: string;
userEmail: string;
pendingTenantImage: string;
}
const ConfirmSignUpPage = ({
subdomain,
userEmail,
pendingTenantImage,
}: Props) => (
<Box>
<h3>You're almost done!</h3>
<img src={pendingTenantImage} width={64} height={64} style={{margin: '12px auto'}} />
<p style={{textAlign: 'center'}}>
Check your email <b>{userEmail}</b> to activate your new feedback space {subdomain}.astuto.io!
</p>
</Box>
);
export default ConfirmSignUpPage;