From 56e23fb6c626be523310726ef62598067201389f Mon Sep 17 00:00:00 2001 From: Michael Bohlender Date: Thu, 16 Jun 2016 16:56:33 +0200 Subject: initial kolabnow new account page --- .../package/contents/ui/NewAccountDialog.qml | 43 +++++++++++++++++++++- 1 file changed, 42 insertions(+), 1 deletion(-) (limited to 'components/package/contents/ui') diff --git a/components/package/contents/ui/NewAccountDialog.qml b/components/package/contents/ui/NewAccountDialog.qml index b2705c94..59f06b67 100644 --- a/components/package/contents/ui/NewAccountDialog.qml +++ b/components/package/contents/ui/NewAccountDialog.qml @@ -105,6 +105,10 @@ Rectangle { width: pageRoot.width * 0.4 text: "kolabnow" + + onClicked: { + stack.push(kolabnow) + } } Button { @@ -138,7 +142,44 @@ Rectangle { width: dialog.width } } - } + Component { + id: kolabnow + + Item { + id: pageRoot + + height: dialog.height + width: dialog.width + + Column { + anchors.centerIn: parent + + spacing: Kirigami.Units.largeSpacing + + TextField { + anchors.horizontalCenter: parent.horizontalCenter + width: pageRoot.width * 0.4 + + placeholderText: "Title of Account (e.g. work, private, kolabnow...)" + } + + TextField { + anchors.horizontalCenter: parent.horizontalCenter + width: pageRoot.width * 0.4 + + placeholderText: "Email (e.g. jens.moep@kolabnow.com)" + } + + TextField { + anchors.horizontalCenter: parent.horizontalCenter + width: pageRoot.width * 0.4 + + placeholderText: "Password" + } + } + } + } + } } } -- cgit v1.2.3