diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-02-01 17:31:12 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-02-02 17:23:19 +0100 |
commit | a319237e545213223e25ed9deb47e94c8529ae10 (patch) | |
tree | 727506c86648b9f12ce3e4fb9d7974a6a3215501 /components/accounts | |
parent | 06f57973c7b490a14d14e2c4912508198b454986 (diff) | |
download | kube-a319237e545213223e25ed9deb47e94c8529ae10.tar.gz kube-a319237e545213223e25ed9deb47e94c8529ae10.zip |
We need the name
Diffstat (limited to 'components/accounts')
-rw-r--r-- | components/accounts/CreateGmail.qml | 16 | ||||
-rw-r--r-- | components/accounts/CreateKolabNow.qml | 16 |
2 files changed, 32 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 |
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 | } |