Skip to content

Commit

Permalink
Use PasswordField for WIF key in secret token sale screen
Browse files Browse the repository at this point in the history
  • Loading branch information
slipo committed Nov 23, 2017
1 parent 5bbd312 commit 5dd93e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/containers/LoginTokenSale/LoginTokenSale.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import React, { Component } from 'react'
import Page from '../../components/Page'
import HomeButtonLink from '../../components/HomeButtonLink'
import PasswordField from '../../components/PasswordField'
import { ROUTES } from '../../core/constants'
import loginStyles from '../../styles/login.scss'

Expand All @@ -28,8 +29,7 @@ export default class LoginTokenSale extends Component<Props, State> {
<Page id='loginPage' className={loginStyles.loginPage}>
<div className={loginStyles.title}>Participate in Token Sale:</div>
<div className={loginStyles.loginForm}>
<input
type='text'
<PasswordField
placeholder='Enter your private key here (WIF)'
onChange={(e) => this.setState({ wif: e.target.value })}
value={wif}
Expand Down

0 comments on commit 5dd93e6

Please sign in to comment.