// Copyright 2015-2018 Parity Technologies (UK) Ltd. // This file is part of Parity. // // SPDX-License-Identifier: BSD-3-Clause import React, { Component } from 'react'; import { AccountCard } from 'fether-ui'; import { inject, observer } from 'mobx-react'; import { Link } from 'react-router-dom'; @inject('createAccountStore') @observer class AccountCopyPhrase extends Component { render () { const { createAccountStore: { address, name, phrase }, history, location: { pathname } } = this.props; const currentStep = pathname.slice(-1); return (

Please write your secret phrase on a piece of paper:

{phrase}
Keep it secure and secret.
  • If you lose your secret phrase, your wallet cannot be recovered.
  • If someone gets hold of your secret phrase, they will be able to drain your account.
]} /> ); } } export default AccountCopyPhrase;