diff options
Diffstat (limited to 'components/accounts/CreateKolabNow.qml')
-rw-r--r-- | components/accounts/CreateKolabNow.qml | 16 |
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 | } |