generate 16 digit strong password for database

This commit is contained in:
Istiak Ferdous
2020-04-29 17:44:34 +06:00
committed by GitHub
parent 1b8ff0dbcc
commit fb91dcca4e

View File

@@ -106,7 +106,7 @@ app.controller('createDatabase', function ($scope, $http) {
$scope.generatePassword = function () {
$scope.generatedPasswordView = false;
$scope.dbPassword = randomPassword(12);
$scope.dbPassword = randomPassword(16);
};
$scope.usePassword = function () {
@@ -447,7 +447,7 @@ app.controller('listDBs', function ($scope, $http) {
$scope.generatePassword = function () {
$scope.generatedPasswordView = false;
$scope.dbPassword = randomPassword(12);
$scope.dbPassword = randomPassword(16);
};
$scope.usePassword = function () {
@@ -493,4 +493,4 @@ app.controller('phpMyAdmin', function ($scope, $http, $window) {
}
setupPHPMYAdminSession();
});
});