mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-12-04 20:13:04 +03:00
53 lines
1.4 KiB
QML
53 lines
1.4 KiB
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 {
|
|
id: setPasswordPrompt
|
|
title: qsTr("Set new password")
|
|
standardButtons: StandardButton.NoButton
|
|
modality: Qt.ApplicationModal
|
|
property string newPassword: newPassword.text
|
|
property string confirmPassword: confirmPassword.text
|
|
|
|
ColumnLayout {
|
|
anchors.fill: parent
|
|
|
|
GridLayout {
|
|
columns: 2
|
|
Label {
|
|
text: qsTr("New password (blank for none): ")
|
|
Layout.alignment: Qt.AlignRight | Qt.AlignVCenter
|
|
Layout.fillWidth: false
|
|
}
|
|
TextField {
|
|
id: newPassword
|
|
echoMode: TextInput.Password
|
|
Layout.fillWidth: true
|
|
}
|
|
Label {
|
|
text: qsTr("Confirm password: ")
|
|
}
|
|
TextField {
|
|
id: confirmPassword
|
|
echoMode: TextInput.Password
|
|
Layout.fillWidth: true
|
|
}
|
|
}
|
|
RowLayout {
|
|
Layout.alignment: Qt.AlignRight | Qt.AlignBottom
|
|
Button {
|
|
text: qsTr("Set password")
|
|
Layout.alignment: Qt.AlignRight | Qt.AlignBottom
|
|
onClicked: accept()
|
|
}
|
|
Button {
|
|
text: qsTr("Cancel")
|
|
onClicked: close()
|
|
}
|
|
}
|
|
}
|
|
}
|