diff options
| -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 |