blob: 0c0f18ea17c120a285d5f336fe9853d915b70298 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
import QtQuick 2.0
import QtQuick.Dialogs 1.2
import QtQuick.Controls 1.4
Dialog {
standardButtons: StandardButton.Ok
title: qsTr("Login")
Column {
anchors.fill: parent
Text {
text: qsTr("Log in with your library credentials")
}
TextField {
id: username
placeholderText: qsTr("patron id")
}
TextField {
id: password
placeholderText: qsTr("password")
echoMode: TextInput.PasswordEchoOnEdit
}
}
visible: false
//visible: ctx.showLogin == true
//onAccepted: backend.login(username.text, password.text)
onRejected: backend.quit() // TODO: it doesn't close
}
|