diff options
Diffstat (limited to 'pages')
-rw-r--r-- | pages/EmailForm.ui.qml | 15 | ||||
-rw-r--r-- | pages/LoginName.qml | 2 |
2 files changed, 8 insertions, 9 deletions
diff --git a/pages/EmailForm.ui.qml b/pages/EmailForm.ui.qml index dc679ab..2c4ae43 100644 --- a/pages/EmailForm.ui.qml +++ b/pages/EmailForm.ui.qml @@ -41,11 +41,11 @@ Rectangle { } Label { - id: instructionLabel + id: instructionLabel x: 16 y: 398 color: "#2b2626" - text: qsTr("Continue with E-Mail") + text: qsTr("Sign up") font.letterSpacing: 0.25 lineHeight: 1 font.weight: Font.Bold @@ -69,7 +69,7 @@ Rectangle { anchors.bottomMargin: 16 font.family: "Google Sans" Layout.fillWidth: true - placeholderText: qsTr("E-mail") + placeholderText: qsTr("Enter your e-mail") anchors.right: parent.right anchors.rightMargin: 16 anchors.left: parent.left @@ -94,10 +94,9 @@ Rectangle { } } - - - -/*##^## Designer { +/*##^## +Designer { D{i:0;autoSize:true;height:480;width:640} } - ##^##*/ +##^##*/ + diff --git a/pages/LoginName.qml b/pages/LoginName.qml index 72b069b..edd2643 100644 --- a/pages/LoginName.qml +++ b/pages/LoginName.qml @@ -5,7 +5,7 @@ EmailForm { width: stackView.width height: stackView.height backButton.onClicked: stackView.pop() - instructionLabel.text: qsTr("Enter e-mail") + instructionLabel.text: qsTr("Log in") emailTextField.onTextChanged: { if (!emailTextField.text || !loginButton.enabled) |