2016-07-24 15:47:41 +05:30
|
|
|
import factory from 'components/auth/factory';
|
2016-05-14 16:56:17 +05:30
|
|
|
import activationMessages from 'components/auth/activation/Activation.intl.json';
|
2016-07-24 14:02:54 +05:30
|
|
|
import forgotPasswordMessages from 'components/auth/forgotPassword/ForgotPassword.intl.json';
|
2016-01-16 17:36:22 +05:30
|
|
|
|
2016-05-14 16:56:17 +05:30
|
|
|
import messages from './Register.intl.json';
|
|
|
|
import Body from './RegisterBody';
|
2016-02-13 20:58:47 +05:30
|
|
|
|
2016-07-24 15:47:41 +05:30
|
|
|
export default factory({
|
|
|
|
title: messages.registerTitle,
|
|
|
|
body: Body,
|
|
|
|
footer: {
|
|
|
|
color: 'blue',
|
|
|
|
label: messages.signUpButton
|
|
|
|
},
|
|
|
|
links: [
|
|
|
|
{
|
|
|
|
label: activationMessages.didNotReceivedEmail,
|
|
|
|
payload: {requestEmail: true}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: forgotPasswordMessages.alreadyHaveCode
|
|
|
|
}
|
|
|
|
]
|
|
|
|
});
|