mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-02 19:50:44 +05:30
22 lines
482 B
TypeScript
22 lines
482 B
TypeScript
import { defineMessages } from 'react-intl';
|
|
import factory from '../factory';
|
|
import Body from './PasswordBody';
|
|
|
|
const messages = defineMessages({
|
|
passwordTitle: 'Enter password',
|
|
signInButton: 'Sign in',
|
|
forgotPassword: 'Forgot password',
|
|
});
|
|
|
|
export default factory({
|
|
title: messages.passwordTitle,
|
|
body: Body,
|
|
footer: {
|
|
color: 'green',
|
|
label: messages.signInButton,
|
|
},
|
|
links: {
|
|
label: messages.forgotPassword,
|
|
},
|
|
});
|