2017-02-10 14:44:10 +03:00
|
|
|
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 {
|
2017-02-10 16:01:49 +03:00
|
|
|
id: setPasswordPrompt
|
2017-02-10 14:44:10 +03:00
|
|
|
title: qsTr("Set new password")
|
|
|
|
standardButtons: StandardButton.NoButton
|
2017-02-15 17:14:34 +03:00
|
|
|
modality: Qt.ApplicationModal
|
2017-02-16 17:22:20 +03:00
|
|
|
property string newPassword: newPassword.text
|
|
|
|
property string confirmPassword: confirmPassword.text
|
2017-02-10 14:44:10 +03:00
|
|
|
|
|
|
|
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
|
2017-02-16 17:22:20 +03:00
|
|
|
onClicked: accept()
|
2017-02-10 14:44:10 +03:00
|
|
|
}
|
|
|
|
Button {
|
|
|
|
text: qsTr("Cancel")
|
|
|
|
onClicked: close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|