mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 19:27:52 +01:00
Add Site settings > General (#133)
This commit is contained in:
committed by
GitHub
parent
bdc4004e4a
commit
35831b9801
21
app/javascript/components/TenantSignUp/ConfirmSignUpPage.tsx
Normal file
21
app/javascript/components/TenantSignUp/ConfirmSignUpPage.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
import * as React from 'react';
|
||||
import I18n from 'i18n-js';
|
||||
import Box from '../common/Box';
|
||||
|
||||
interface Props {
|
||||
subdomain: string;
|
||||
userEmail: string;
|
||||
}
|
||||
|
||||
const ConfirmSignUpPage = ({
|
||||
subdomain,
|
||||
userEmail,
|
||||
}: Props) => (
|
||||
<Box>
|
||||
<h3>{ I18n.t('signup.step3.title') }</h3>
|
||||
|
||||
<p>{ I18n.t('signup.step3.message', { email: userEmail, subdomain: `${subdomain}.astuto.io` }) }</p>
|
||||
</Box>
|
||||
);
|
||||
|
||||
export default ConfirmSignUpPage;
|
||||
Reference in New Issue
Block a user