diff options
Diffstat (limited to 'pages')
-rw-r--r-- | pages/ConfirmPassword.qml | 4 | ||||
-rw-r--r-- | pages/ConfirmPasswordForm.ui.qml | 6 | ||||
-rw-r--r-- | pages/PasswordForm.ui.qml | 4 |
3 files changed, 12 insertions, 2 deletions
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 |