diff --git a/common/containers/Tabs/ViewWallet/index.js b/common/containers/Tabs/ViewWallet/index.js deleted file mode 100644 index 140c010d..00000000 --- a/common/containers/Tabs/ViewWallet/index.js +++ /dev/null @@ -1,126 +0,0 @@ -import React, {Component} from 'react'; - -export default class ViewWallet extends Component { - constructor(props) { - super(props) - } - - render() { - return ( -
-
-
- -
-
- {/*+-*/} - -

View Wallet Info

- -
-
-

This allows you to download different versions - of - private keys and re-print your paper wallet. You may want to do this in order to - - import - your account into Geth/Mist. If you want to check your balance, we - recommend - using a blockchain explorer like etherscan.io. -

- {/*
*/} -
-
-

How would you like to access your - wallet?

- - - - - - - -
-
-
-
-
-
-
- ) - } -} diff --git a/common/containers/Tabs/WalletDecrypt/index.jsx b/common/containers/Tabs/WalletDecrypt/index.jsx new file mode 100644 index 00000000..4f41c464 --- /dev/null +++ b/common/containers/Tabs/WalletDecrypt/index.jsx @@ -0,0 +1,117 @@ +import React, {Component} from 'react'; +import translate from 'translations'; + + +export default class WalletDecrypt extends Component { + constructor(props) { + super(props); + } + + render() { + return ( +
+
+
+
+
+

View Wallet Info

+
+
+

{translate('VIEWWALLET_Subtitle')}

+
+
+

{translate('decrypt_Access')}

+ + + + + + + +
+
+
+
+
+
+
+ ); + } +} \ No newline at end of file diff --git a/common/containers/Tabs/index.js b/common/containers/Tabs/index.js index a4c0cf92..52157b75 100644 --- a/common/containers/Tabs/index.js +++ b/common/containers/Tabs/index.js @@ -1,2 +1,2 @@ -export ViewWallet from './ViewWallet' +export WalletDecrypt from './WalletDecrypt' export GenerateWallet from './GenerateWallet' diff --git a/common/routing/index.jsx b/common/routing/index.jsx index 17d500f7..41be5920 100644 --- a/common/routing/index.jsx +++ b/common/routing/index.jsx @@ -3,7 +3,7 @@ import {browserHistory, Redirect, Route} from 'react-router'; import {useBasename} from 'history'; import {App} from 'containers'; import GenerateWallet from 'containers/Tabs/GenerateWallet' -import ViewWallet from 'containers/Tabs/ViewWallet' +import WalletDecrypt from 'containers/Tabs/WalletDecrypt' import Help from 'containers/Tabs/Help' import Swap from 'containers/Tabs/Swap' @@ -12,7 +12,7 @@ export const history = getHistory() export const Routing = () => ( - +