mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-12-01 18:54:13 +03:00
24 lines
573 B
QML
24 lines
573 B
QML
|
import QtQuick 2.6
|
||
|
import QtQuick.Controls 1.4
|
||
|
import QtQuick.Layouts 1.1
|
||
|
import QtQuick.Controls.Styles 1.4
|
||
|
import QtQuick.Dialogs 1.2
|
||
|
|
||
|
Dialog {
|
||
|
title: qsTr("Enter password")
|
||
|
standardButtons: StandardButton.Ok | StandardButton.Cancel
|
||
|
onAccepted: device.validate(password.text)
|
||
|
ColumnLayout {
|
||
|
RowLayout {
|
||
|
Label {
|
||
|
text: qsTr("Password: ")
|
||
|
}
|
||
|
TextField {
|
||
|
id: password
|
||
|
echoMode: TextInput.Password
|
||
|
Layout.fillWidth: true
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|