summaryrefslogtreecommitdiff
path: root/pages/CreateProfile.qml
diff options
context:
space:
mode:
Diffstat (limited to 'pages/CreateProfile.qml')
-rw-r--r--pages/CreateProfile.qml16
1 files changed, 5 insertions, 11 deletions
diff --git a/pages/CreateProfile.qml b/pages/CreateProfile.qml
index 048c861..e03442d 100644
--- a/pages/CreateProfile.qml
+++ b/pages/CreateProfile.qml
@@ -1,17 +1,11 @@
import QtQuick 2.12
+import KelakonUser 0.1
CreateProfileForm {
width: stackView.width
height: stackView.height
-
- backButton {
- onClicked: {
- stackView.pop()
- }
- }
- skipButton {
- onClicked: {
- stackView.push("qrc:/pages/Home.qml")
- }
- }
+ backButton.onClicked: stackView.pop()
+ skipButton.onClicked: stackView.push("qrc:/pages/Home.qml")
+ emailAddressLabel.text: User.emailAddress
+ enterFullName.text: User.realName
}