diff options
-rw-r--r-- | pages/ConfirmPasswordForm.ui.qml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pages/ConfirmPasswordForm.ui.qml b/pages/ConfirmPasswordForm.ui.qml index bf0ff82..152b7e5 100644 --- a/pages/ConfirmPasswordForm.ui.qml +++ b/pages/ConfirmPasswordForm.ui.qml @@ -9,8 +9,8 @@ Rectangle { border.width: 0 property alias backButton: backButton - property alias passTextField: confirmPassTextField - property alias createPassButton: confirmPassButton + property alias confirmPassTextField: confirmPassTextField + property alias confirmPassButton: confirmPassButton property alias emailAddressLabel: emailAddressLabel Rectangle { @@ -58,12 +58,13 @@ Rectangle { Rectangle { id: userEmail + y: 292 height: 48 anchors.right: parent.right anchors.rightMargin: 16 anchors.left: parent.left anchors.leftMargin: 16 - anchors.bottom: passTextField.top + anchors.bottom: confirmPassTextField.top anchors.bottomMargin: 16 Label { |