summaryrefslogtreecommitdiff
path: root/ConfirmPassword.qml
blob: b2e60ab537cdb25770b5f67d7126f4982002196d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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.emailAddress

	passTextField {
		placeholderText: qsTr("Re-enter Password")
		onTextChanged:
			if (passTextField.text == User.password)
				createPassButton.enabled = true
			else
				createPassButton.enabled = false
	}

	createPassButton {
		enabled: false
		text: qsTr("Confirm password")
		onClicked: pageView.push("CreateProfile.qml")
	}
}