diff options
author | Erik Prabowo Kamal <erik@darapsa.co.id> | 2019-08-19 15:52:13 +0800 |
---|---|---|
committer | Erik Prabowo Kamal <erik@darapsa.co.id> | 2019-08-19 15:52:13 +0800 |
commit | 691de7824d1924ffad2058d92c1f5d7556b60b59 (patch) | |
tree | 2c6a9d9df8f0e296967952030a779b3498a2b3b7 /LoginForm.ui.qml |
Awal halaman masuk
Diffstat (limited to 'LoginForm.ui.qml')
-rw-r--r-- | LoginForm.ui.qml | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/LoginForm.ui.qml b/LoginForm.ui.qml new file mode 100644 index 0000000..1ee1bfb --- /dev/null +++ b/LoginForm.ui.qml @@ -0,0 +1,59 @@ +import QtQuick 2.12 +import QtQuick.Layouts 1.1 +import QtQuick.Controls 2.12 + +Rectangle { + width: 363 + height: 628 + color: "#ffffff" + property alias emailButton: emailButton + property alias googleButton: googleButton + border.width: 0 + + Label { + x: 124 + y: 158 + width: 74 + height: 28 + text: qsTr("kelakon") + font.pointSize: 16 + anchors.horizontalCenterOffset: 0 + anchors.horizontalCenter: parent.horizontalCenter + } + + RowLayout { + x: 34 + y: 419 + width: googleButton.width + height: googleButton.height + anchors.horizontalCenterOffset: 0 + anchors.horizontalCenter: parent.horizontalCenter + } + + Button { + id: googleButton + x: 31 + y: 419 + width: 296 + height: 50 + text: qsTr("Continue with Google") + spacing: 4 + anchors.bottomMargin: 31 + anchors.bottom: emailButton.top + anchors.horizontalCenterOffset: 0 + anchors.horizontalCenter: parent.horizontalCenter + } + + Button { + id: emailButton + x: 41 + y: 493 + width: 296 + height: 50 + text: qsTr("Continue with E-mail") + anchors.bottom: parent.bottom + anchors.bottomMargin: 80 + anchors.left: parent.left + anchors.leftMargin: 34 + } +} |