46 lines
812 B
QML
46 lines
812 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
GridLayout
|
|
{
|
|
id: passEncryptKeyGrid
|
|
columns: 2
|
|
columnSpacing: 5
|
|
rowSpacing: 9
|
|
// anchors.fill: parent
|
|
|
|
property string name: "pyqcrm"
|
|
|
|
Label
|
|
{
|
|
text: qsTr("Encryption Key eingeben")
|
|
font.pixelSize: 40
|
|
Layout.columnSpan: 2
|
|
Layout.alignment: Qt.AlignHCenter
|
|
padding: 15
|
|
}
|
|
|
|
|
|
Label
|
|
{
|
|
text: qsTr("Encryption Key:")
|
|
Layout.alignment: Qt.AlignRight
|
|
}
|
|
|
|
TextField
|
|
{
|
|
id: passEncryptKey
|
|
placeholderText: qsTr("Hier Encryption Key eingeben")
|
|
Layout.fillWidth: true
|
|
height: 3
|
|
echoMode: TextInput.Password
|
|
property string name: "ENCRYPT_KEY"
|
|
}
|
|
|
|
Item
|
|
{
|
|
Layout.fillHeight: true
|
|
}
|
|
}
|