diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-08-31 09:38:17 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-08-31 09:38:17 +0700 |
commit | 80af8d82a2d8ed7c2c3551a3a7e4e4b797cc36ed (patch) | |
tree | 9ce1ea0e6ceed38e823dd330480608ab442acef1 /pages | |
parent | 5e6a522e82aa3cfab413d2723a22592d1063017a (diff) |
add previously entered email
Diffstat (limited to 'pages')
-rw-r--r-- | pages/PasswordForm.ui.qml | 30 |
1 files changed, 27 insertions, 3 deletions
diff --git a/pages/PasswordForm.ui.qml b/pages/PasswordForm.ui.qml index 96efb37..98c90a2 100644 --- a/pages/PasswordForm.ui.qml +++ b/pages/PasswordForm.ui.qml @@ -37,15 +37,15 @@ Rectangle { Label { x: 16 - y: 398 + y: 232 color: "#2b2626" text: qsTr("Create password") + anchors.bottom: userEmail.top + anchors.bottomMargin: 16 font.letterSpacing: 0.25 lineHeight: 1 font.weight: Font.Bold wrapMode: Text.WordWrap - anchors.bottom: passTextField.top - anchors.bottomMargin: 16 anchors.left: parent.left anchors.leftMargin: 16 anchors.right: parent.right @@ -55,6 +55,30 @@ Rectangle { font.pointSize: 34 } + Rectangle { + id: userEmail + height: 48 + anchors.right: parent.right + anchors.rightMargin: 16 + anchors.left: parent.left + anchors.leftMargin: 16 + anchors.bottom: passTextField.top + anchors.bottomMargin: 16 + + Label { + anchors.right: parent.right + anchors.rightMargin: 16 + anchors.left: parent.left + anchors.leftMargin: 16 + anchors.verticalCenter: parent.verticalCenter + + text: qsTr("your@email.com") + font.family: "Google Sans" + font.pointSize: 16 + color: "#99000000" + } + } + TextField { id: passTextField y: 501 |