Created
September 18, 2018 00:27
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { FormattedMessage } from 'react-intl'; | |
. | |
. | |
. | |
<Grid container={true} alignItems='center'> | |
<Grid item={true} xs={6}> | |
<FormControlLabel | |
classes={{root: this.props.classes.rememberText}} | |
control={<Checkbox color='primary' />} | |
label={<FormattedMessage id="sign.in.remember.me" />} | |
/> | |
</Grid> | |
<Grid classes={{item: this.props.classes.forgotLink}} item={true} xs={6}> | |
<Link to=''> | |
<FormattedMessage id="sign.in.forgot.password" /> | |
</Link> | |
</Grid> | |
</Grid> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment