blob: e70922e1663d938823fec200ca66828618e82a4b (
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 KelakonUser 0.1
import "larva/features"
PasswordForm {
backButton.onClicked: pageView.pop()
userEmail.y: 292
instructionLabel.text: qsTr("Re-Enter password")
emailAddressLabel.text: User.name
passTextField {
placeholderText: qsTr("Re-enter Password")
onTextChanged:
if (passTextField.text == User.password)
createPassButton.enabled = true
}
createPassButton {
enabled: false
text: qsTr("Confirm password")
onClicked: pageView.push("CreateProfile.qml")
}
}
|