Files
astuto/app/javascript/components/TenantSignUp/ConfirmEmailSignUpPage.tsx
Riccardo Graziosi f0346a73ec Add tour and other improvements (#348)
* Add tour
* Add instructions to set password for OAuth users
* Tenant signup improvement
* Fix bug on user soft delete
* Slighlty darken background color
* Add a stronger confirmation for board deletion
2024-05-21 19:10:18 +02:00

26 lines
657 B
TypeScript

import * as React from 'react';
import Box from '../common/Box';
interface Props {
subdomain: string;
userEmail: string;
pendingTenantImage: string;
}
const ConfirmEmailSignUpPage = ({
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 <a href={`https://${subdomain}.astuto.io`} className="link">{`${subdomain}.astuto.io`}</a>!
</p>
</Box>
);
export default ConfirmEmailSignUpPage;