32 lines
746 B
QML
32 lines
746 B
QML
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)
|
|
}
|
|
}
|
|
}
|
|
}
|