summaryrefslogtreecommitdiffstats
path: root/components/accounts/CreateGmail.qml
diff options
context:
space:
mode:
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