mirror of
https://github.com/astuto/astuto.git
synced 2025-12-18 20:49:37 +01:00
* 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
26 lines
657 B
TypeScript
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; |