From a786cda76baf0abf78b2c5df56ff06c9558dfece Mon Sep 17 00:00:00 2001 From: Anatasof Wirapraja Date: Tue, 31 Jan 2023 19:11:32 +0700 Subject: add rememberCheckBox and forgotPassword --- SignInFlickable.ui.qml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/SignInFlickable.ui.qml b/SignInFlickable.ui.qml index e32bb9b..122721d 100644 --- a/SignInFlickable.ui.qml +++ b/SignInFlickable.ui.qml @@ -96,6 +96,31 @@ GridLayout { font.pixelSize: 12 color: "#6c757d" } + RowLayout { + Layout.fillWidth: true + CheckBox { + id: rememberCheckBox + text: qsTr("Remember me") + font.pointSize: 14 + font.family: "Roboto" + Layout.fillWidth: true + contentItem: Text { + color: "#6c757d" + text: rememberCheckBox.text + verticalAlignment: Text.AlignVCenter + leftPadding: rememberCheckBox.indicator.width + rememberCheckBox.spacing + } + } + Text { + id: forgotPassword + text: "Forgot password?" + font.family: "Roboto" + font.pointSize: 14 + horizontalAlignment: Text.AlignRight + Layout.fillWidth: true + linkColor: Qt.rgba(.0235, .416, .788, 1.0) + } + } Button { id: button text: qsTr("Login") -- cgit v1.2.3