blob: 897081b7c3a7ce2d9f0d23e7d6e40307800fd1fb (
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: !allowEmptyPass
}
}
visible: false
onAccepted: backend.login(username.text, password.text)
onRejected: backend.quit()
}
|