From e40bec1123550ba19713e73b244beb8019683cb6 Mon Sep 17 00:00:00 2001 From: Anatasof Wirapraja Date: Sat, 31 Aug 2019 11:13:35 +0700 Subject: add ConfrimPasswordForm, changed createPassButton text to "Next" to --- pages/ConfirmPassword.qml | 4 ++++ pages/ConfirmPasswordForm.ui.qml | 6 ++++++ pages/PasswordForm.ui.qml | 4 ++-- 3 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 pages/ConfirmPassword.qml create mode 100644 pages/ConfirmPasswordForm.ui.qml diff --git a/pages/ConfirmPassword.qml b/pages/ConfirmPassword.qml new file mode 100644 index 0000000..af4eedd --- /dev/null +++ b/pages/ConfirmPassword.qml @@ -0,0 +1,4 @@ +import QtQuick 2.4 + +ConfirmPasswordForm { +} diff --git a/pages/ConfirmPasswordForm.ui.qml b/pages/ConfirmPasswordForm.ui.qml new file mode 100644 index 0000000..96a8ae4 --- /dev/null +++ b/pages/ConfirmPasswordForm.ui.qml @@ -0,0 +1,6 @@ +import QtQuick 2.4 + +Item { + width: 400 + height: 400 +} diff --git a/pages/PasswordForm.ui.qml b/pages/PasswordForm.ui.qml index 757017b..a306c50 100644 --- a/pages/PasswordForm.ui.qml +++ b/pages/PasswordForm.ui.qml @@ -67,7 +67,7 @@ Rectangle { anchors.bottomMargin: 16 Label { - id: emailAddressLabel + id: emailAddressLabel anchors.right: parent.right anchors.rightMargin: 16 anchors.left: parent.left @@ -102,7 +102,7 @@ Rectangle { id: createPassButton x: 34 y: 278 - text: qsTr("Confirm password") + text: qsTr("Next") font.family: "Google Sans" font.capitalization: Font.MixedCase anchors.right: parent.right -- cgit v1.2.3