diff options
| -rw-r--r-- | pages/EmailForm.ui.qml | 12 | 
1 files changed, 5 insertions, 7 deletions
| diff --git a/pages/EmailForm.ui.qml b/pages/EmailForm.ui.qml index 3208096..c07da3c 100644 --- a/pages/EmailForm.ui.qml +++ b/pages/EmailForm.ui.qml @@ -26,21 +26,18 @@ Rectangle {      RowLayout {          x: 34          y: 411 +        id: buttonLayout          width: loginButton.width          height: loginButton.height          anchors.bottom: passwordTextField.top +        anchors.bottomMargin: 16          anchors.horizontalCenter: parent.horizontalCenter -        Label { -            id: prefixLabel -            text: "+62" -        } -          TextField {              id: emailTextField              width: 303              Layout.fillWidth: true -            placeholderText: "812345678" +            placeholderText: "E-mail"          }      } @@ -51,9 +48,10 @@ Rectangle {          width: loginButton.width          height: loginButton.height          anchors.bottom: loginButton.top +        anchors.bottomMargin: 16          anchors.horizontalCenter: parent.horizontalCenter          echoMode: TextInput.Password -        placeholderText: qsTr("Kata Sandi") +        placeholderText: qsTr("Password")      }      Button { |