Skip to content

Commit

Permalink
fix(accounts): passwords not updating
Browse files Browse the repository at this point in the history
  • Loading branch information
polonel committed Apr 22, 2019
1 parent e98bc56 commit c28d1ad
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions src/client/containers/Modals/EditAccountModal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -228,11 +228,21 @@ class EditAccountModal extends React.Component {
<div className='uk-margin-medium-bottom uk-clearfix'>
<div className='uk-float-left' style={{ width: '50%', paddingRight: '20px' }}>
<label className={'uk-form-label'}>Password</label>
<input type='password' className={'md-input'} />
<input
type='password'
className={'md-input'}
value={this.password}
onChange={e => this.onInputChanged(e, 'password')}
/>
</div>
<div className='uk-float-left uk-width-1-2'>
<label className={'uk-form-label'}>Confirm Password</label>
<input type='password' className={'md-input'} />
<input
type='password'
className={'md-input'}
value={this.confirmPassword}
onChange={e => this.onInputChanged(e, 'confirmPassword')}
/>
</div>
</div>
</div>
Expand Down

0 comments on commit c28d1ad

Please sign in to comment.