2024-12-19 00:53:12 +00:00
|
|
|
pragma ComponentBehavior: Bound
|
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Controls
|
|
|
|
import QtQuick.Layouts
|
|
|
|
|
|
|
|
Page {
|
|
|
|
id: page
|
|
|
|
|
|
|
|
title: qsTr("Login")
|
|
|
|
|
|
|
|
ColumnLayout {
|
2024-12-21 04:13:46 +00:00
|
|
|
MnemonicLabel {
|
|
|
|
buddy: user
|
|
|
|
mnemonic: qsTr("&User:")
|
2024-12-19 00:53:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TextField {
|
|
|
|
id: user
|
|
|
|
|
|
|
|
focus: true
|
|
|
|
}
|
|
|
|
|
2024-12-21 04:13:46 +00:00
|
|
|
MnemonicLabel {
|
|
|
|
buddy: password
|
|
|
|
mnemonic: qsTr("&Password:")
|
2024-12-19 00:53:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TextField {
|
|
|
|
id: password
|
|
|
|
|
|
|
|
echoMode: TextInput.Password
|
|
|
|
}
|
|
|
|
|
|
|
|
Button {
|
|
|
|
action: loginAction
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-12-21 04:13:46 +00:00
|
|
|
MnemonicAction {
|
2024-12-19 00:53:12 +00:00
|
|
|
id: loginAction
|
|
|
|
|
2024-12-21 04:13:46 +00:00
|
|
|
mnemonic: qsTr("Log &in")
|
2024-12-19 00:53:12 +00:00
|
|
|
|
|
|
|
onTriggered: function () {
|
|
|
|
Database.open(user.text, password.text);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|