blob: 1724769dc8cf2b3344ed2937935a5329a8c26786 (
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
|
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
onAccepted: backend.login(username.text, password.text)
onRejected: backend.quit()
}
|