Finish authentication flow for 2FA

This commit is contained in:
Dane Everitt 2019-06-22 13:33:11 -07:00
parent 7f3ab8aadf
commit 212773d63c
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
9 changed files with 232 additions and 162 deletions

View file

@ -95,9 +95,9 @@ class ResetPasswordContainer extends React.PureComponent<Props, State> {
<label>Email</label>
<input value={this.state.email || ''} disabled={true}/>
<div className={'mt-6'}>
<label htmlFor={'new-password'}>New Password</label>
<label htmlFor={'new_password'}>New Password</label>
<input
id={'new-password'}
id={'new_password'}
type={'password'}
required={true}
onChange={this.onPasswordChange}
@ -107,9 +107,9 @@ class ResetPasswordContainer extends React.PureComponent<Props, State> {
</p>
</div>
<div className={'mt-6'}>
<label htmlFor={'new-password-confirm'}>Confirm New Password</label>
<label htmlFor={'new_password_confirm'}>Confirm New Password</label>
<input
id={'new-password-confirm'}
id={'new_password_confirm'}
type={'password'}
required={true}
onChange={this.onPasswordConfirmChange}