2022-05-26 13:40:41 +00:00
|
|
|
|
import QtQuick 2.12
|
2022-06-28 10:55:33 +00:00
|
|
|
|
import QtQuick.Layouts 1.12
|
|
|
|
|
|
|
|
|
|
import StatusQ.Controls 0.1
|
|
|
|
|
|
2022-05-26 13:40:41 +00:00
|
|
|
|
import utils 1.0
|
|
|
|
|
import shared.panels 1.0
|
|
|
|
|
|
|
|
|
|
BackupSeedStepBase {
|
2022-06-28 10:55:33 +00:00
|
|
|
|
id: root
|
|
|
|
|
|
2022-07-15 13:25:25 +00:00
|
|
|
|
readonly property alias seedStored: storeCheck.checked
|
2022-05-26 13:40:41 +00:00
|
|
|
|
|
2022-06-28 10:55:33 +00:00
|
|
|
|
titleText: qsTr("Complete back up")
|
|
|
|
|
|
2022-07-15 13:25:25 +00:00
|
|
|
|
ColumnLayout {
|
2022-06-28 10:55:33 +00:00
|
|
|
|
Layout.fillWidth: true
|
2022-07-15 13:25:25 +00:00
|
|
|
|
Layout.leftMargin: 44
|
|
|
|
|
Layout.rightMargin: 44
|
|
|
|
|
Layout.topMargin: Style.current.bigPadding
|
|
|
|
|
spacing: Style.current.padding
|
|
|
|
|
|
|
|
|
|
StyledText {
|
|
|
|
|
id: txtTitle
|
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
|
wrapMode: Text.WordWrap
|
|
|
|
|
font.bold: true
|
|
|
|
|
font.pixelSize: 17
|
|
|
|
|
lineHeight: 1.2
|
|
|
|
|
text: qsTr("Store Your Phrase Offline and Complete Your Back Up")
|
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
StyledText {
|
|
|
|
|
id: txtDesc
|
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
|
wrapMode: Text.WordWrap
|
|
|
|
|
font.pixelSize: Style.current.primaryTextFontSize
|
|
|
|
|
lineHeight: 1.2
|
|
|
|
|
text: qsTr("By completing this process, you will remove your seed phrase from this application’s storage. This makes your funds more secure.")
|
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
StyledText {
|
|
|
|
|
id: secondTxtDesc
|
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
|
wrapMode: Text.WordWrap
|
|
|
|
|
font.pixelSize: Style.current.primaryTextFontSize
|
|
|
|
|
lineHeight: 1.2
|
|
|
|
|
text: qsTr("You will remain logged in, and your seed phrase will be entirely in your hands.")
|
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
StatusCheckBox {
|
|
|
|
|
id: storeCheck
|
2022-08-16 16:35:10 +00:00
|
|
|
|
objectName: "ConfirmStoringSeedPhrasePanel_storeCheck"
|
2022-07-15 13:25:25 +00:00
|
|
|
|
spacing: Style.current.padding
|
|
|
|
|
font.pixelSize: Style.current.primaryTextFontSize
|
|
|
|
|
text: qsTr("I acknowledge that Status will not be able to show me my seed phrase again.")
|
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
Layout.topMargin: Style.current.bigPadding
|
|
|
|
|
}
|
2022-05-26 13:40:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|