summaryrefslogtreecommitdiffstats
path: root/components/accounts/CreateKolabNow.qml
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-02-01 17:31:12 +0100
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-02-02 17:23:19 +0100
commita319237e545213223e25ed9deb47e94c8529ae10 (patch)
tree727506c86648b9f12ce3e4fb9d7974a6a3215501 /components/accounts/CreateKolabNow.qml
parent06f57973c7b490a14d14e2c4912508198b454986 (diff)
downloadkube-a319237e545213223e25ed9deb47e94c8529ae10.tar.gz
kube-a319237e545213223e25ed9deb47e94c8529ae10.zip
We need the name
Diffstat (limited to 'components/accounts/CreateKolabNow.qml')
-rw-r--r--components/accounts/CreateKolabNow.qml16
1 files changed, 16 insertions, 0 deletions
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
@@ -102,6 +102,22 @@ Item {
102 } 102 }
103 103
104 Controls.Label { 104 Controls.Label {
105 text: "Name"
106 Layout.alignment: Qt.AlignRight
107 }
108 Controls.TextField {
109 Layout.fillWidth: true
110
111 placeholderText: "Your name"
112
113 text: account.identityName
114
115 onTextChanged: {
116 account.identityName = text
117 }
118 }
119
120 Controls.Label {
105 text: "Email address" 121 text: "Email address"
106 Layout.alignment: Qt.AlignRight 122 Layout.alignment: Qt.AlignRight
107 } 123 }