FirstStart angepasst

This commit is contained in:
2024-11-25 15:17:20 +01:00
parent 304f9cabc5
commit 93efaabe6d
18 changed files with 1619 additions and 325 deletions

45
Gui/EncryptionKey.qml Normal file
View File

@@ -0,0 +1,45 @@
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
}
}