status-desktop/ui/app/AppLayouts/Onboarding/popups/ConfirmAddExistingKeyModal.qml

37 lines
792 B
QML

import QtQuick 2.13
import QtQuick.Controls 2.13
import utils 1.0
import StatusQ.Controls 0.1
import shared.panels 1.0
import shared.popups 1.0
// TODO: replace with StatusModal
ModalPopup {
id: popup
title: qsTr("Enter seed phrase")
height: 200
signal openModalClicked()
StyledText {
text: qsTr("Do you want to add another existing key?")
anchors.left: parent.left
anchors.top: parent.top
}
footer: StatusButton {
anchors.bottom: parent.bottom
anchors.topMargin: Style.current.padding
anchors.right: parent.right
anchors.rightMargin: Style.current.padding
text: qsTr("Add another existing key")
onClicked : {
openModalClicked()
popup.close()
}
}
}