diff --git a/ui/app/AppLayouts/Profile/Sections/AboutContainer.qml b/ui/app/AppLayouts/Profile/Sections/AboutContainer.qml index d2795ed763..3568f22274 100644 --- a/ui/app/AppLayouts/Profile/Sections/AboutContainer.qml +++ b/ui/app/AppLayouts/Profile/Sections/AboutContainer.qml @@ -34,7 +34,7 @@ Item { } StyledText { id: element11 - text: qsTr("Version: 1.0") + text: qsTr("Version: alpha.0") anchors.left: parent.left anchors.leftMargin: 24 anchors.top: element10.top @@ -68,6 +68,7 @@ Item { } } StyledText { + id: faqLink text: "Frequently asked questions" anchors.left: parent.left anchors.leftMargin: 24 @@ -81,6 +82,20 @@ Item { cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor } } + StyledText { + id: warningMessage + x: 772 + text: qsTr("Thanks for trying Status Desktop! Please note that this is an alpha release and we advise you that using this app should be done for testing purposes only and you assume the full responsibility for all risks concerning your data and funds. Status makes no claims of security or integrity of funds in these builds.") + font.bold: true + anchors.top: faqLink.bottom + anchors.topMargin: 30 + anchors.horizontalCenter: parent.horizontalCenter + font.pixelSize: 14 + font.letterSpacing: 0.1 + width: 700 + wrapMode: Text.Wrap + color: Theme.black + } } /*##^## diff --git a/ui/onboarding/Intro.qml b/ui/onboarding/Intro.qml index 3abbf95412..4c2c0ecda8 100644 --- a/ui/onboarding/Intro.qml +++ b/ui/onboarding/Intro.qml @@ -69,15 +69,29 @@ RowLayout { } } + StyledText { + id: warningMessage + x: 772 + text: qsTr("Thanks for trying Status Desktop! Please note that this is an alpha release and we advise you that using this app should be done for testing purposes only and you assume the full responsibility for all risks concerning your data and funds. Status makes no claims of security or integrity of funds in these builds.") + font.bold: true + anchors.top: rctPageIndicator.bottom + anchors.topMargin: 10 + anchors.horizontalCenter: parent.horizontalCenter + font.pixelSize: 14 + font.letterSpacing: 0.1 + width: 700 + wrapMode: Text.Wrap + color: Theme.black + } + StyledButton { id: btnGetStarted - label: "Get started" - anchors.top: rctPageIndicator.bottom - anchors.topMargin: 87 + label: "I understand" + anchors.top: warningMessage.bottom + anchors.topMargin: 17 anchors.horizontalCenter: parent.horizontalCenter width: 146 height: 44 - } StyledText {