bootlader, not-initialized, dev-settings pages copy

pull/2/merge
Szymon Lesisz 6 years ago
parent 5282c22bc0
commit 505a7e354d

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

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

@ -7,8 +7,12 @@ import { connect } from 'react-redux';
const Initialize = () => {
return (
<section className="acquire">
<h3>Device not initialized</h3>
<section className="device-settings">
<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>
);
}

Loading…
Cancel
Save