summaryrefslogtreecommitdiff
path: root/pages/Profile.qml
diff options
context:
space:
mode:
authorꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2019-09-16 21:21:22 +0800
committerꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2019-09-16 21:21:22 +0800
commit5a586260aeab91d53e9316bf3395a34a91cd8cc0 (patch)
treea8b29b4097c78463ada8716c32f28e4d2a0670a8 /pages/Profile.qml
parent1be4acfe8c0368b5f464d8f1ee3e9cc6f862662a (diff)
Login flow
for registered accounts
Diffstat (limited to 'pages/Profile.qml')
-rw-r--r--pages/Profile.qml15
1 files changed, 15 insertions, 0 deletions
diff --git a/pages/Profile.qml b/pages/Profile.qml
new file mode 100644
index 0000000..89dd09e
--- /dev/null
+++ b/pages/Profile.qml
@@ -0,0 +1,15 @@
+import QtQuick 2.12
+import KelakonUser 0.1
+
+CreateProfileForm {
+ width: stackView.width
+ height: stackView.height
+ backButton.onClicked: stackView.pop()
+ skipButton.onClicked: {
+ login.search(User.name)
+ stackView.push("qrc:/pages/Home.qml")
+ }
+ enterFullName.text: User.realName
+ userNameLabel.text: User.name
+ emailAddressLabel.text: User.emailAddress
+}