1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-24 09:18:09 +00:00

bootlader, not-initialized, dev-settings pages copy

This commit is contained in:
Szymon Lesisz 2018-05-22 18:07:42 +02:00
parent 5282c22bc0
commit 505a7e354d
3 changed files with 13 additions and 7 deletions

View File

@ -7,8 +7,11 @@ import { connect } from 'react-redux';
const Bootloader = () => { const Bootloader = () => {
return ( return (
<section className="acquire"> <section className="device-settings">
<h3>Bootloader mode</h3> <div className="row">
<h2>Your device is in firmware update mode</h2>
<p>Please re-connect it</p>
</div>
</section> </section>
); );
} }

View File

@ -8,11 +8,10 @@ import { connect } from 'react-redux';
export const DeviceSettings = () => { export const DeviceSettings = () => {
return ( return (
<section className="device-settings"> <section className="device-settings">
<h2>Device settings</h2>
<div className="row"> <div className="row">
<h2>Device settings is under construction</h2> <h2>Device settings is under construction</h2>
<p>Please use old wallet to edit your device settings</p> <p>Please use Bitcoin wallet interface to change your device settings</p>
<a className="button" href="https://wallet.trezor.io/">Take me to the old wallet</a> <a className="button" href="https://wallet.trezor.io/">Take me to the Bitcoin wallet</a>
</div> </div>
</section> </section>
); );

View File

@ -7,8 +7,12 @@ import { connect } from 'react-redux';
const Initialize = () => { const Initialize = () => {
return ( return (
<section className="acquire"> <section className="device-settings">
<h3>Device not initialized</h3> <div className="row">
<h2>Your device is in not initialized</h2>
<p>Please use Bitcoin wallet interface to start initialization process</p>
<a className="button" href="https://wallet.trezor.io/">Take me to the Bitcoin wallet</a>
</div>
</section> </section>
); );
} }