diff --git a/js/src/modals/index.js b/js/src/modals/index.js index 0e8c33563..1979fb088 100644 --- a/js/src/modals/index.js +++ b/js/src/modals/index.js @@ -22,6 +22,7 @@ import EditMeta from './EditMeta'; import ExecuteContract from './ExecuteContract'; import FirstRun from './FirstRun'; import Shapeshift from './Shapeshift'; +import SMSVerification from './SMSVerification'; import Transfer from './Transfer'; import PasswordManager from './PasswordManager'; @@ -34,6 +35,7 @@ export { ExecuteContract, FirstRun, Shapeshift, + SMSVerification, Transfer, PasswordManager }; diff --git a/js/src/views/Account/account.js b/js/src/views/Account/account.js index 902e3e7c1..2e0759242 100644 --- a/js/src/views/Account/account.js +++ b/js/src/views/Account/account.js @@ -20,8 +20,9 @@ import { bindActionCreators } from 'redux'; import ContentCreate from 'material-ui/svg-icons/content/create'; import ContentSend from 'material-ui/svg-icons/content/send'; import LockIcon from 'material-ui/svg-icons/action/lock'; +import VerifyIcon from 'material-ui/svg-icons/action/verified-user'; -import { EditMeta, Shapeshift, Transfer, PasswordManager } from '../../modals'; +import { EditMeta, Shapeshift, SMSVerification, Transfer, PasswordManager } from '../../modals'; import { Actionbar, Button, Page } from '../../ui'; import shapeshiftBtn from '../../../assets/images/shapeshift-btn.png'; @@ -45,6 +46,7 @@ class Account extends Component { state = { showEditDialog: false, showFundDialog: false, + showVerificationDialog: false, showTransferDialog: false, showPasswordDialog: false } @@ -64,6 +66,7 @@ class Account extends Component {
{ this.renderEditDialog(account) } { this.renderFundDialog() } + { this.renderVerificationDialog() } { this.renderTransferDialog() } { this.renderPasswordDialog() } { this.renderActionbar() } @@ -99,6 +102,11 @@ class Account extends Component { icon={ } label='shapeshift' onClick={ this.onShapeshiftAccountClick } />, +