diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2023-01-31 19:11:32 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2023-01-31 19:11:32 +0700 |
commit | a786cda76baf0abf78b2c5df56ff06c9558dfece (patch) | |
tree | 1d999f0c56c2f075e44492d2f909990c9656ac3c | |
parent | f817603ebdf03b60a3a6f2ae6cf14281806ff085 (diff) |
add rememberCheckBox and forgotPassword
-rw-r--r-- | SignInFlickable.ui.qml | 25 |
1 files changed, 25 insertions, 0 deletions
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: "<a href=\"#\">Forgot password?</a>" + 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") |