2020-06-04 19:41:27 +03:00
|
|
|
|
import { defineMessages } from 'react-intl';
|
2019-12-07 13:28:52 +02:00
|
|
|
|
import factory from '../factory';
|
2016-05-14 14:26:17 +03:00
|
|
|
|
import Body from './ActivationBody';
|
2016-02-13 17:28:47 +02:00
|
|
|
|
|
2020-06-04 19:41:27 +03:00
|
|
|
|
const messages = defineMessages({
|
|
|
|
|
accountActivationTitle: 'Account activation',
|
|
|
|
|
confirmEmail: 'Confirm E‑mail',
|
|
|
|
|
didNotReceivedEmail: 'Did not received E‑mail?',
|
|
|
|
|
});
|
|
|
|
|
|
2016-07-24 13:17:41 +03:00
|
|
|
|
export default factory({
|
2020-05-24 02:08:24 +03:00
|
|
|
|
title: messages.accountActivationTitle,
|
|
|
|
|
body: Body,
|
|
|
|
|
footer: {
|
|
|
|
|
color: 'blue',
|
|
|
|
|
label: messages.confirmEmail,
|
|
|
|
|
},
|
|
|
|
|
links: {
|
|
|
|
|
label: messages.didNotReceivedEmail,
|
|
|
|
|
},
|
2016-07-24 13:17:41 +03:00
|
|
|
|
});
|