diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-04-12 18:30:01 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-04-12 18:30:01 +0800 |
commit | 2127dd61cda7dcb65b4edd51556158a8e79b0795 (patch) | |
tree | 0ccdd70c8b925b4a298bfcb1402917c986054a1b /Authentication | |
parent | 89fcfe5ec1073fd374a8bae3d8457bebd96453c8 (diff) |
Just use (BS) Label now instead of Body
Diffstat (limited to 'Authentication')
-rw-r--r-- | Authentication/SignIn.ui.qml | 15 | ||||
-rw-r--r-- | Authentication/SignUp.ui.qml | 15 |
2 files changed, 20 insertions, 10 deletions
diff --git a/Authentication/SignIn.ui.qml b/Authentication/SignIn.ui.qml index 09e671a..2cac614 100644 --- a/Authentication/SignIn.ui.qml +++ b/Authentication/SignIn.ui.qml @@ -40,19 +40,21 @@ Flickable { text: titleHeader } - Lbl.Body { + Label { id: titleParagraph text: qsTr("Nice to see you! Please log in with your account.") color: "#6c757d" Layout.fillWidth: true + wrapMode: Label.Wrap font.pointSize: Eduport .leadFontSize } } ColumnLayout { - Lbl.Body { + Label { text: emailLabel + wrapMode: Label.Wrap } Rectangle { @@ -120,8 +122,9 @@ Flickable { ColumnLayout { - Lbl.Body { + Label { text: qsTr("Password *") + wrapMode: Label.Wrap } Rectangle { @@ -189,9 +192,10 @@ Flickable { } } - Lbl.Body { + Label { id: passwordHelper text: qsTr("Your password must be 8 characters at least") + wrapMode: Label.Wrap font.pointSize: Eduport .formTextFontSize color: "#6c757d" @@ -248,8 +252,9 @@ Flickable { RowLayout { Layout.alignment: Qt.AlignHCenter - Lbl.Body { + Label { text: qsTr("Don't have an account?") + wrapMode: Label.Wrap } Text { diff --git a/Authentication/SignUp.ui.qml b/Authentication/SignUp.ui.qml index 6f3df00..c37b50b 100644 --- a/Authentication/SignUp.ui.qml +++ b/Authentication/SignUp.ui.qml @@ -41,10 +41,11 @@ Flickable { text: titleHeader } - Lbl.Body { + Label { id: titleParagraph color: "#6c757d" text: qsTr("Nice to see you! Please Sign up with your account.") + wrapMode: Label.Wrap Layout.fillWidth: true font.pointSize: Eduport .leadFontSize @@ -53,8 +54,9 @@ Flickable { ColumnLayout { - Lbl.Body { + Label { text: emailLabel + wrapMode: Label.Wrap } Rectangle { @@ -122,8 +124,9 @@ Flickable { ColumnLayout { - Lbl.Body { + Label { text: qsTr("Password *") + wrapMode: Label.Wrap } Rectangle { @@ -193,8 +196,9 @@ Flickable { ColumnLayout { - Lbl.Body { + Label { text: qsTr("Confirm Password *") + wrapMode: Label.Wrap } Rectangle { @@ -301,8 +305,9 @@ Flickable { RowLayout { Layout.alignment: Qt.AlignHCenter - Lbl.Body { + Label { text: qsTr("Already have an account?") + wrapMode: Label.Wrap } Text { |