You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
2.0 KiB
61 lines
2.0 KiB
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import styles from './NewWalletPassword.scss'
|
|
|
|
const NewWalletPassword = ({
|
|
createWalletPassword,
|
|
createWalletPasswordConfirmation,
|
|
showCreateWalletPasswordConfirmationError,
|
|
passwordMinCharsError,
|
|
updateCreateWalletPassword,
|
|
updateCreateWalletPasswordConfirmation
|
|
}) => (
|
|
<div className={styles.container}>
|
|
<section className={styles.input}>
|
|
<input
|
|
type="password"
|
|
placeholder="Password"
|
|
className={`${styles.password} ${
|
|
showCreateWalletPasswordConfirmationError ? styles.error : undefined
|
|
}
|
|
${passwordMinCharsError && styles.error}`}
|
|
value={createWalletPassword}
|
|
onChange={event => updateCreateWalletPassword(event.target.value)}
|
|
/>
|
|
</section>
|
|
|
|
<section className={styles.input}>
|
|
<input
|
|
type="password"
|
|
placeholder="Confirm Password"
|
|
className={`${styles.password} ${
|
|
showCreateWalletPasswordConfirmationError ? styles.error : undefined
|
|
}
|
|
${passwordMinCharsError && styles.error}`}
|
|
value={createWalletPasswordConfirmation}
|
|
onChange={event => updateCreateWalletPasswordConfirmation(event.target.value)}
|
|
/>
|
|
<p
|
|
className={`${styles.errorMessage} ${
|
|
showCreateWalletPasswordConfirmationError ? styles.visible : undefined
|
|
}`}
|
|
>
|
|
Passwords do not match
|
|
</p>
|
|
<p className={`${styles.helpMessage} ${passwordMinCharsError ? styles.red : undefined}`}>
|
|
Password must be at least 8 characters long
|
|
</p>
|
|
</section>
|
|
</div>
|
|
)
|
|
|
|
NewWalletPassword.propTypes = {
|
|
createWalletPassword: PropTypes.string.isRequired,
|
|
createWalletPasswordConfirmation: PropTypes.string.isRequired,
|
|
showCreateWalletPasswordConfirmationError: PropTypes.bool.isRequired,
|
|
passwordMinCharsError: PropTypes.bool.isRequired,
|
|
updateCreateWalletPassword: PropTypes.func.isRequired,
|
|
updateCreateWalletPasswordConfirmation: PropTypes.func.isRequired
|
|
}
|
|
|
|
export default NewWalletPassword
|
|
|