diff options
author | Erik Prabowo Kamal <erik@darapsa.co.id> | 2019-08-31 13:07:00 +0800 |
---|---|---|
committer | Erik Prabowo Kamal <erik@darapsa.co.id> | 2019-08-31 13:07:00 +0800 |
commit | 6272e8647f19cf9d12ed1f3caef9e1c31e4150d6 (patch) | |
tree | b4e155dabe8c22ab96dfd310a76340d2075b0e66 /pages/ConfirmPassword.qml | |
parent | ca698a94c93278d80bef3a93196f8289546b47da (diff) |
Set up flows from password form to profile creation form
Diffstat (limited to 'pages/ConfirmPassword.qml')
-rw-r--r-- | pages/ConfirmPassword.qml | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/pages/ConfirmPassword.qml b/pages/ConfirmPassword.qml index a93afda..78e57f1 100644 --- a/pages/ConfirmPassword.qml +++ b/pages/ConfirmPassword.qml @@ -3,16 +3,21 @@ import id.co.darapsa.kelakon.user 0.1 import id.co.darapsa.kelakon.rtclient 0.1 ConfirmPasswordForm { - width: stackView.width - height: stackView.height - backButton { - onClicked: { - stackView.pop() - } - } -} + width: stackView.width + height: stackView.height + + backButton { + onClicked: { + stackView.pop() + } + } + + emailAddressLabel.text: User.emailAddress -/*##^## Designer { - D{i:0;autoSize:true;height:480;width:640} + confirmPassButton { + onClicked: { + RTClient.logIn(User.emailAddress, User.password) + stackView.push("qrc:/pages/CreateProfile.qml") + } + } } - ##^##*/ |