summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatasof Wirapraja <anatasof.wirapraja@gmail.com>2019-08-27 16:27:46 +0700
committerAnatasof Wirapraja <anatasof.wirapraja@gmail.com>2019-08-27 16:27:46 +0700
commita278a037912b28a2071785bdfdc58f3db453c9b4 (patch)
treea3dca68196f840babdd673cc5ba5395c0a1c7854
parent67a44869d0fa9bf7582bf8d733c4202447ee2b86 (diff)
change text label
-rw-r--r--pages/EmailForm.ui.qml12
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 {