accounts-frontend/src/components/auth/recoverPassword/RecoverPassword.js

17 lines
355 B
JavaScript
Raw Normal View History

2016-07-24 15:47:41 +05:30
import factory from 'components/auth/factory';
import messages from './RecoverPassword.intl.json';
import Body from './RecoverPasswordBody';
2016-07-24 15:47:41 +05:30
export default factory({
title: messages.title,
body: Body,
footer: {
color: 'lightViolet',
2016-08-03 00:43:11 +05:30
label: messages.change
2016-07-24 15:47:41 +05:30
},
links: {
label: messages.contactSupport
}
});