Files
astuto/app/javascript/components/TenantSignUp/ConfirmSignUpPage.tsx

26 lines
647 B
TypeScript
Raw Normal View History

2022-07-18 10:47:54 +02:00
import * as React from 'react';
import Box from '../common/Box';
interface Props {
subdomain: string;
userEmail: string;
2024-03-02 18:36:22 +01:00
pendingTenantImage: string;
2022-07-18 10:47:54 +02:00
}
const ConfirmSignUpPage = ({
subdomain,
userEmail,
2024-03-02 18:36:22 +01:00
pendingTenantImage,
2022-07-18 10:47:54 +02:00
}: Props) => (
<Box>
2024-03-02 18:36:22 +01:00
<h3>You're almost done!</h3>
2022-07-18 10:47:54 +02:00
2024-03-02 18:36:22 +01:00
<img src={pendingTenantImage} width={64} height={64} style={{margin: '12px auto'}} />
<p style={{textAlign: 'center'}}>
2024-05-03 18:11:07 +02:00
Check your email <b>{userEmail}</b> to activate your new feedback space <a href={`https://${subdomain}.astuto.io`} className="link">{`${subdomain}.astuto.io`}</a>!
2024-03-02 18:36:22 +01:00
</p>
2022-07-18 10:47:54 +02:00
</Box>
);
export default ConfirmSignUpPage;