blob: 78e57f1abccb3fe768156f3471dccfccb61ec340 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import QtQuick 2.12
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()
}
}
emailAddressLabel.text: User.emailAddress
confirmPassButton {
onClicked: {
RTClient.logIn(User.emailAddress, User.password)
stackView.push("qrc:/pages/CreateProfile.qml")
}
}
}
|