diff options
Diffstat (limited to 'pages/Profile.qml')
-rw-r--r-- | pages/Profile.qml | 15 |
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 +} |