diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-01-24 11:33:19 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-01-24 11:33:19 +0100 |
commit | f6df80e970063f4fce3c5f4eb0af157239ae1f8e (patch) | |
tree | b2eb45d94565132cd94852e1ffb6cab7212c4c12 /accounts/gmail/qml/Login.qml | |
parent | bf15c3977c27536e47578e8b0ecaedb852c5ff52 (diff) | |
download | kube-f6df80e970063f4fce3c5f4eb0af157239ae1f8e.tar.gz kube-f6df80e970063f4fce3c5f4eb0af157239ae1f8e.zip |
Fixed gmail login
Diffstat (limited to 'accounts/gmail/qml/Login.qml')
-rw-r--r-- | accounts/gmail/qml/Login.qml | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/accounts/gmail/qml/Login.qml b/accounts/gmail/qml/Login.qml new file mode 100644 index 00000000..597e3ee3 --- /dev/null +++ b/accounts/gmail/qml/Login.qml | |||
@@ -0,0 +1,59 @@ | |||
1 | /* | ||
2 | Copyright (C) 2016 Michael Bohlender, <michael.bohlender@kdemail.net> | ||
3 | Copyright (C) 2017 Christian Mollekopf, <mollekopf@kolabsys.com> | ||
4 | |||
5 | This program is free software; you can redistribute it and/or modify | ||
6 | it under the terms of the GNU General Public License as published by | ||
7 | the Free Software Foundation; either version 2 of the License, or | ||
8 | (at your option) any later version. | ||
9 | |||
10 | This program is distributed in the hope that it will be useful, | ||
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | GNU General Public License for more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License along | ||
16 | with this program; if not, write to the Free Software Foundation, Inc., | ||
17 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
18 | */ | ||
19 | |||
20 | import QtQuick 2.4 | ||
21 | import QtQuick.Layouts 1.1 | ||
22 | import org.kube.framework 1.0 as Kube | ||
23 | import org.kube.accounts.gmail 1.0 as GmailAccount | ||
24 | |||
25 | Item { | ||
26 | property alias accountId: settings.accountIdentifier | ||
27 | property string heading: qsTr("Login") | ||
28 | property string subheadline: settings.accountName | ||
29 | |||
30 | GmailAccount.GmailSettings { | ||
31 | id: settings | ||
32 | accountType: "gmail" | ||
33 | } | ||
34 | |||
35 | function login(){ | ||
36 | settings.login({accountSecret: pwField.text}) | ||
37 | } | ||
38 | |||
39 | GridLayout { | ||
40 | anchors { | ||
41 | fill: parent | ||
42 | } | ||
43 | columns: 2 | ||
44 | columnSpacing: Kube.Units.largeSpacing | ||
45 | rowSpacing: Kube.Units.largeSpacing | ||
46 | |||
47 | Kube.Label { | ||
48 | text: qsTr("Password") | ||
49 | Layout.alignment: Qt.AlignRight | ||
50 | } | ||
51 | |||
52 | Kube.PasswordField { | ||
53 | id: pwField | ||
54 | Layout.fillWidth: true | ||
55 | focus: true | ||
56 | placeholderText: qsTr("Password of your IMAP account") | ||
57 | } | ||
58 | } | ||
59 | } | ||