add submit text

This commit is contained in:
Cassie Tarakajian 2016-10-14 12:08:08 -04:00
parent 5aa5032961
commit 04f68e37f9
3 changed files with 10 additions and 3 deletions

View File

@ -16,10 +16,12 @@ class ResetPasswordView extends React.Component {
}
render() {
console.log(this.props.user);
const resetPasswordClass = classNames({
'reset-password': true,
'reset-password--submitted': this.props.user.passwordResetInitialized
'reset-password--submitted': this.props.user.resetPasswordInitiate
});
console.log(resetPasswordClass);
return (
<div className={resetPasswordClass} ref="resetPassword" tabIndex="0">
<h1>Reset Your Password</h1>
@ -42,7 +44,7 @@ class ResetPasswordView extends React.Component {
ResetPasswordView.propTypes = {
resetPasswordReset: PropTypes.func.isRequired,
user: PropTypes.shape({
passwordResetInitialized: PropTypes.bool
resetPasswordInitiate: PropTypes.bool
}).isRequired,
};

View File

@ -15,6 +15,8 @@ const user = (state = { authenticated: false }, action) => {
};
case ActionTypes.RESET_PASSWORD_INITIATE:
return Object.assign(state, {}, { resetPasswordInitiate: true });
case ActionTypes.RESET_PASSWORD_RESET:
return Object.assign(state, {}, { resetPasswordInitiate: false });
default:
return state;
}

View File

@ -19,7 +19,10 @@
.reset-password__submitted {
width: #{300 / $base-font-size}rem;
display: none;
.reset-password--submitted {
text-align: left;
font-size: #{12 / $base-font-size}rem;
margin-top: #{10 / $base-font-size}rem;
.reset-password--submitted & {
display: block;
}