summaryrefslogtreecommitdiffstats
path: root/components/accounts/CreateGmail.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/CreateGmail.qml
parent06f57973c7b490a14d14e2c4912508198b454986 (diff)
downloadkube-a319237e545213223e25ed9deb47e94c8529ae10.tar.gz
kube-a319237e545213223e25ed9deb47e94c8529ae10.zip
We need the name
Diffstat (limited to 'components/accounts/CreateGmail.qml')
-rw-r--r--components/accounts/CreateGmail.qml16
1 files changed, 16 insertions, 0 deletions
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 {
118 placeholderText: "Your email address" 118 placeholderText: "Your email address"
119 } 119 }
120 120
121 Controls.Label {
122 text: "Name"
123 Layout.alignment: Qt.AlignRight
124 }
125 Controls.TextField {
126 Layout.fillWidth: true
127
128 placeholderText: "Your name"
129
130 text: account.identityName
131
132 onTextChanged: {
133 account.identityName = text
134 }
135 }
136
121 Kirigami.Label { 137 Kirigami.Label {
122 text: "Password" 138 text: "Password"
123 Layout.alignment: Qt.AlignRight 139 Layout.alignment: Qt.AlignRight