diff options
-rw-r--r-- | pages/PasswordForm.ui.qml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pages/PasswordForm.ui.qml b/pages/PasswordForm.ui.qml index da39af9..ac753ee 100644 --- a/pages/PasswordForm.ui.qml +++ b/pages/PasswordForm.ui.qml @@ -61,7 +61,7 @@ Rectangle { } TextField { - id: emailTextField + id: passTextField y: 501 font.pointSize: 16 anchors.bottom: loginButton.top @@ -74,9 +74,10 @@ Rectangle { anchors.left: parent.left anchors.leftMargin: 16 Layout.maximumHeight: 56 + echoMode: TextInput.Password background: Rectangle { - color: emailTextField.enabled ? "#f4f4f4" : "#353637" + color: passTextField.enabled ? "#f4f4f4" : "#353637" anchors.verticalCenter: parent.verticalCenter implicitHeight: 56 radius: 6 |