2016-05-23 00:28:43 +05:30
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
import { Button } from 'components/ui/form';
|
|
|
|
import AuthTitle from 'components/auth/AuthTitle';
|
2016-07-24 14:02:54 +05:30
|
|
|
import RejectionLink from 'components/auth/RejectionLink';
|
|
|
|
import forgotPasswordMessages from 'components/auth/forgotPassword/ForgotPassword.intl.json';
|
2016-05-23 00:28:43 +05:30
|
|
|
|
|
|
|
import messages from './ResendActivation.intl.json';
|
|
|
|
import Body from './ResendActivationBody';
|
|
|
|
|
|
|
|
export default function ResendActivation() {
|
|
|
|
return {
|
|
|
|
Title: () => <AuthTitle title={messages.title} />,
|
|
|
|
Body,
|
|
|
|
Footer: () => <Button color="blue" label={messages.sendNewEmail} type="submit" />,
|
2016-07-24 14:02:54 +05:30
|
|
|
Links: () => <RejectionLink label={forgotPasswordMessages.alreadyHaveCode} />
|
2016-05-23 00:28:43 +05:30
|
|
|
};
|
|
|
|
}
|