Response handling for the invitation registeration.
This commit is contained in:
23
src/pages/Confirmation.tsx
Normal file
23
src/pages/Confirmation.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
import { FormattedMessage } from 'react-intl';
|
||||
import { Link } from 'react-router-dom';
|
||||
import './Confirmation.scss';
|
||||
|
||||
export const Confirmation = () => {
|
||||
return (
|
||||
<div className='Confirmation'>
|
||||
<h1>
|
||||
<FormattedMessage id='confirmation.title' />
|
||||
</h1>
|
||||
<p>
|
||||
<FormattedMessage id='confirmation.text' />
|
||||
</p>
|
||||
<Link to='/'>
|
||||
>{' '}
|
||||
<span className='infoLink'>
|
||||
<FormattedMessage id='confirmation.link' />
|
||||
</span>{' '}
|
||||
<
|
||||
</Link>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user