summaryrefslogtreecommitdiffstats
path: root/accounts/maildir/package/contents
diff options
context:
space:
mode:
Diffstat (limited to 'accounts/maildir/package/contents')
-rw-r--r--accounts/maildir/package/contents/ui/MaildirAccountSettings.qml16
1 files changed, 16 insertions, 0 deletions
diff --git a/accounts/maildir/package/contents/ui/MaildirAccountSettings.qml b/accounts/maildir/package/contents/ui/MaildirAccountSettings.qml
index e508a475..d9d0741d 100644
--- a/accounts/maildir/package/contents/ui/MaildirAccountSettings.qml
+++ b/accounts/maildir/package/contents/ui/MaildirAccountSettings.qml
@@ -53,6 +53,22 @@ Rectangle {
53 onTextChanged: { maildirSettings.accountName = text; } 53 onTextChanged: { maildirSettings.accountName = text; }
54 } 54 }
55 55
56 Label { text: "User Name" }
57 TextField {
58 placeholderText: "Your Name"
59 Layout.fillWidth: true
60 text: maildirSettings.userName
61 onTextChanged: { maildirSettings.userName = text; }
62 }
63
64 Label { text: "Email Address" }
65 TextField {
66 placeholderText: "Your EMail Address"
67 Layout.fillWidth: true
68 text: maildirSettings.emailAddress
69 onTextChanged: { maildirSettings.emailAddress = text; }
70 }
71
56 Text { 72 Text {
57 Layout.columnSpan: 2 73 Layout.columnSpan: 2
58 Layout.fillWidth: true 74 Layout.fillWidth: true