summaryrefslogtreecommitdiff
path: root/CreateProfile.qml
diff options
context:
space:
mode:
authorAnatasof Wirapraja <anatasof.wirapraja@gmail.com>2019-09-24 22:26:07 +0700
committerAnatasof Wirapraja <anatasof.wirapraja@gmail.com>2019-09-24 22:26:07 +0700
commit35fe3c15f3b8a562d866f40389a5a8124501636a (patch)
treede458de864a3c1f025c4c9dbde927d249ebf4294 /CreateProfile.qml
parenta570ecafaa7e1481778a35015776b6de6102da83 (diff)
parentf1251b08ee37f44998d5a20e7bfcce5e9c9e1cb5 (diff)
Merge branch 'master' of ssh://darapsa.co.id/usr/local/git/kelakon into development
* 'master' of ssh://darapsa.co.id/usr/local/git/kelakon: All forms and icons are moved to Larva Update qrtclient Reuse path
Diffstat (limited to 'CreateProfile.qml')
-rw-r--r--CreateProfile.qml13
1 files changed, 4 insertions, 9 deletions
diff --git a/CreateProfile.qml b/CreateProfile.qml
index 91ce39c..2a22a4b 100644
--- a/CreateProfile.qml
+++ b/CreateProfile.qml
@@ -1,20 +1,15 @@
import QtQuick 2.12
import KelakonUser 0.1
-import "pages"
+import "larva/features"
CreateProfileForm {
- backButton {
- icon.source: "../assets/arrow-back-24px.svg"
- onClicked: pageView.pop()
- }
-
+ backButton.onClicked: pageView.pop()
skipButton.onClicked: pageView.push("Home.qml")
- emailImage.source: "../assets/email-24px.svg"
emailAddressLabel.text: User.emailAddress
startUsingKelakon.onClicked: {
User.name = userNameLabel.text
User.realName = enterFullName.text
- onboarding.ticketNew("Kelakon", User.realName + " <" + User.emailAddress
- + ">")
+ onboarding.ticketNew("Kelakon", User.realName + " <"
+ + User.emailAddress + ">")
}
}