From a319237e545213223e25ed9deb47e94c8529ae10 Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Wed, 1 Feb 2017 17:31:12 +0100 Subject: We need the name --- components/accounts/CreateGmail.qml | 16 ++++++++++++++++ components/accounts/CreateKolabNow.qml | 16 ++++++++++++++++ 2 files changed, 32 insertions(+) (limited to 'components/accounts') diff --git a/components/accounts/CreateGmail.qml b/components/accounts/CreateGmail.qml index ca432f1d..5d7f8194 100644 --- a/components/accounts/CreateGmail.qml +++ b/components/accounts/CreateGmail.qml @@ -118,6 +118,22 @@ Item { placeholderText: "Your email address" } + Controls.Label { + text: "Name" + Layout.alignment: Qt.AlignRight + } + Controls.TextField { + Layout.fillWidth: true + + placeholderText: "Your name" + + text: account.identityName + + onTextChanged: { + account.identityName = text + } + } + Kirigami.Label { text: "Password" Layout.alignment: Qt.AlignRight diff --git a/components/accounts/CreateKolabNow.qml b/components/accounts/CreateKolabNow.qml index fbcb5fd7..e6022cbb 100644 --- a/components/accounts/CreateKolabNow.qml +++ b/components/accounts/CreateKolabNow.qml @@ -101,6 +101,22 @@ Item { } } + Controls.Label { + text: "Name" + Layout.alignment: Qt.AlignRight + } + Controls.TextField { + Layout.fillWidth: true + + placeholderText: "Your name" + + text: account.identityName + + onTextChanged: { + account.identityName = text + } + } + Controls.Label { text: "Email address" Layout.alignment: Qt.AlignRight -- cgit v1.2.3