Base jellyfin freebox application

This commit is contained in:
Aurelien Vaillant
2024-08-12 15:14:19 +02:00
commit f80433ebe5
6 changed files with 178 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
import QtQuick 2.15
import QtQuick.Controls 2.15
Application {
Column {
anchors.centerIn: parent
spacing: 20
TextField {
id: loginField
placeholderText: "Enter username"
width: parent.width * 0.8
}
PasswordField {
id: passwordField
placeholderText: "Enter password"
width: parent.width * 0.8
}
Button {
text: "Login"
width: parent.width * 0.8
onClicked: {
// Action à effectuer lors du clic sur le bouton
console.log("Login: " + loginField.text)
console.log("Password: " + passwordField.text)
}
}
}
}