2016-05-15 02:23:58 +05:30
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
import { Button } from 'components/ui/form';
|
|
|
|
import RejectionLink from 'components/auth/RejectionLink';
|
|
|
|
import AuthTitle from 'components/auth/AuthTitle';
|
|
|
|
import changePassword from 'components/auth/changePassword/ChangePassword.intl.json';
|
|
|
|
|
|
|
|
import messages from './RecoverPassword.intl.json';
|
|
|
|
import Body from './RecoverPasswordBody';
|
|
|
|
|
|
|
|
export default function RecoverPassword() {
|
|
|
|
return {
|
|
|
|
Title: () => <AuthTitle title={messages.title} />,
|
|
|
|
Body,
|
2016-05-20 01:20:02 +05:30
|
|
|
Footer: () => <Button color="lightViolet" label={changePassword.change} type="submit" />,
|
2016-05-15 02:23:58 +05:30
|
|
|
Links: () => <RejectionLink label={messages.contactSupport} />
|
|
|
|
};
|
|
|
|
}
|