From e74b0798d863bd184d3482b7e899dc32d3339907 Mon Sep 17 00:00:00 2001
From: Anatasof Wirapraja <anatasof.wirapraja@gmail.com>
Date: Tue, 17 Sep 2019 16:27:36 +0700
Subject: add `registerButton`, `loginButton

---
 features/OnboardingForm.ui.qml | 47 ++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 45 insertions(+), 2 deletions(-)

diff --git a/features/OnboardingForm.ui.qml b/features/OnboardingForm.ui.qml
index ac4e238..e789108 100644
--- a/features/OnboardingForm.ui.qml
+++ b/features/OnboardingForm.ui.qml
@@ -9,17 +9,60 @@ Page {
 
     Image {
         id: image
-        height: 100
+        anchors.bottom: onboardingText1.top
+        anchors.bottomMargin: 32
         anchors.top: parent.top
         anchors.topMargin: 32
         anchors.right: parent.right
         anchors.rightMargin: 64
         anchors.left: parent.left
         anchors.leftMargin: 64
-        anchors.verticalCenter: parent.verticalCenter
         source: "../components/images/onboarding-1.png"
         fillMode: Image.PreserveAspectFit
     }
+    Text {
+        id: onboardingText1
+        text: qsTr("Achieve more today, chill tomorrow.")
+        anchors.bottom: registerButton.top
+        anchors.bottomMargin: 16
+        wrapMode: Text.WordWrap
+        anchors.right: parent.right
+        anchors.rightMargin: 16
+        anchors.left: parent.left
+        anchors.leftMargin: 16
+        font.pointSize: 24
+        font.family: "Work Sans"
+        font.weight: Font.Medium
+    }
+    RoundButton {
+        id: registerButton
+        text: qsTr("Get started")
+        hoverEnabled: false
+        highlighted: true
+        anchors.right: parent.right
+        anchors.rightMargin: 8
+        anchors.left: parent.left
+        anchors.leftMargin: 8
+        anchors.bottom: loginButton.top
+        anchors.bottomMargin: 8
+        font.capitalization: Font.MixedCase
+        font.family: "Work Sans"
+    }
+
+    RoundButton {
+        id: loginButton
+        flat: true
+        highlighted: false
+        Material.foreground: Material.primary
+        text: qsTr("Log in")
+        anchors.right: parent.right
+        anchors.rightMargin: 8
+        anchors.left: parent.left
+        anchors.leftMargin: 8
+        anchors.bottom: disclaimer.top
+        anchors.bottomMargin: 16
+        font.capitalization: Font.MixedCase
+    }
 
     Text {
         id: disclaimer
-- 
cgit v1.2.3