verschlüsselung

This commit is contained in:
2024-10-31 14:02:56 +01:00
parent 560a0d0fb1
commit 2c9ab2ff57
5 changed files with 62 additions and 37 deletions

View File

@@ -68,6 +68,7 @@ Item
rowSpacing: 9
anchors.fill: parent
Layout.margins: 9
property string name: "pyqcrm"
Label
{
text: qsTr("Benutzername:")
@@ -80,7 +81,7 @@ Item
placeholderText: qsTr("Hier Benutzername eingeben")
Layout.fillWidth: true
height: 3
property string name: "username"
property string name: "PYQCRM_ADMIN"
}
Label
@@ -95,7 +96,7 @@ Item
echoMode: TextInput.Password
placeholderText: qsTr("Hier Passwort eingeben")
Layout.fillWidth: true
property string name: "password"
property string name: "PYQCRM_ADMIN_PASS"
}
Item
@@ -117,6 +118,7 @@ Item
columnSpacing: 5
rowSpacing: 9
anchors.fill: parent
property string name: "database"
Label
@@ -131,7 +133,7 @@ Item
id: dbHost
placeholderText: qsTr("Hier Host eingeben")
Layout.fillWidth: true
property string name: "db-host"
property string name: "DB_HOST"
}
Label
@@ -145,7 +147,7 @@ Item
id: dbPort
placeholderText: qsTr("Hier DB-Port eingeben")
Layout.fillWidth: true
property string name: "db-port"
property string name: "DB_PORT"
}
Label
@@ -159,7 +161,7 @@ Item
id: dbName
placeholderText: qsTr("Hier DB-Name eingeben")
Layout.fillWidth: true
property string name: "db-name"
property string name: "DB_NAME"
}
Label
@@ -173,7 +175,7 @@ Item
id: dbUserName
placeholderText: qsTr("Hier DB-Benutzername eingeben")
Layout.fillWidth: true
property string name: "db-username"
property string name: "DB_USER"
}
@@ -189,7 +191,7 @@ Item
echoMode: TextInput.Password
placeholderText: qsTr("Hier DB-Passwort eingeben")
Layout.fillWidth: true
property string name: "db-password"
property string name: "DB_PASS"
}
Item