summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--accounts/imap/package/contents/ui/ImapAccountSettings.qml10
1 files changed, 9 insertions, 1 deletions
diff --git a/accounts/imap/package/contents/ui/ImapAccountSettings.qml b/accounts/imap/package/contents/ui/ImapAccountSettings.qml
index 01fbb46d..80540912 100644
--- a/accounts/imap/package/contents/ui/ImapAccountSettings.qml
+++ b/accounts/imap/package/contents/ui/ImapAccountSettings.qml
@@ -60,7 +60,7 @@ Item {
60 60
61 width: parent.width 61 width: parent.width
62 62
63 text: "To let Kube access your account, fill in email address, username, password and give the account a title that will be displayed inside Kube. For information about which SMTP, IMAP server, which authentification and port to be used, please contact your email provider" 63 text: "To let Kube access your account, fill in email address, username, password and give the account a title that will be displayed inside Kube. For information about which SMTP, IMAP address, which authentification and port to be used, please contact your email provider"
64 64
65 color: Kirigami.Theme.disabledTextColor 65 color: Kirigami.Theme.disabledTextColor
66 66
@@ -89,6 +89,8 @@ Item {
89 TextField { 89 TextField {
90 Layout.fillWidth: true 90 Layout.fillWidth: true
91 91
92 placeholderText: "E.g. \"Work\", \"Home\" that will be displayed in Kube as name"
93
92 text: imapSettings.accountName 94 text: imapSettings.accountName
93 onTextChanged: { 95 onTextChanged: {
94 imapSettings.accountName = text 96 imapSettings.accountName = text
@@ -102,6 +104,8 @@ Item {
102 TextField { 104 TextField {
103 Layout.fillWidth: true 105 Layout.fillWidth: true
104 106
107 placeholderText: "Your email address"
108
105 text: imapSettings.emailAddress 109 text: imapSettings.emailAddress
106 onTextChanged: { 110 onTextChanged: {
107 imapSettings.emailAddress = text 111 imapSettings.emailAddress = text
@@ -115,6 +119,8 @@ Item {
115 TextField { 119 TextField {
116 Layout.fillWidth: true 120 Layout.fillWidth: true
117 121
122 placeholderText: "The name used to log into your email account"
123
118 text: imapSettings.imapUsername 124 text: imapSettings.imapUsername
119 onTextChanged: { 125 onTextChanged: {
120 imapSettings.imapUsername = text 126 imapSettings.imapUsername = text
@@ -130,6 +136,8 @@ Item {
130 Layout.fillWidth: true 136 Layout.fillWidth: true
131 137
132 text: imapSettings.imapPassword 138 text: imapSettings.imapPassword
139 placeholderText: "Password of your email account"
140 echoMode: TextInput.Password
133 onTextChanged: { 141 onTextChanged: {
134 imapSettings.imapPassword = text 142 imapSettings.imapPassword = text
135 imapSettings.smtpPassword = text 143 imapSettings.smtpPassword = text