diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-01-03 18:37:08 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-01-03 18:37:08 +0800 |
commit | 4d5f2e0a081ad897d7e5173d8071ebc7606abbaa (patch) | |
tree | 7c7172e52519c68f988e409e046d2938639e1042 /SignUpFlickable.ui.qml | |
parent | e0147fd7f9edd962628c8e3b37d374d0888d48b0 (diff) |
Sign Up aliases
Diffstat (limited to 'SignUpFlickable.ui.qml')
-rw-r--r-- | SignUpFlickable.ui.qml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/SignUpFlickable.ui.qml b/SignUpFlickable.ui.qml index 9db756e..3de2a65 100644 --- a/SignUpFlickable.ui.qml +++ b/SignUpFlickable.ui.qml @@ -3,6 +3,11 @@ import QtQuick.Controls 2.15 import QtQuick.Layouts 1.15 GridLayout { + property alias signUpEmail: email + property alias signUpPassword: password + property alias signUpConfigmPassword: confirmPassword + property alias signUpButton: button + property alias signUpSignIn: signIn ColumnLayout { Layout.margins: 15 @@ -19,6 +24,7 @@ GridLayout { source: "Bootstrap/icons/envelope-fill.svg" } TextField { + id: email placeholderText: qsTr("E-mail") Layout.fillWidth: true } @@ -38,6 +44,7 @@ GridLayout { } } TextField { + id: password placeholderText: qsTr("password") Layout.fillWidth: true } @@ -57,7 +64,7 @@ GridLayout { } } TextField { - id: password + id: confirmPassword placeholderText: qsTr("password") Layout.fillWidth: true } @@ -65,6 +72,7 @@ GridLayout { } Button { + id: button text: qsTr("Sign Up") Layout.fillWidth: true } @@ -76,6 +84,7 @@ GridLayout { text: qsTr("Already have an account?") } Text { + id: signIn text: "<a href=\"sign-in.html\">Sign in here</a>" linkColor: Qt.rgba(.0235, .416, .788, 1.0) font.underline: false |