generate 16 digit strong password for user

This commit is contained in:
Istiak Ferdous 2020-04-29 17:46:00 +06:00 committed by GitHub
parent 98ca795043
commit ede66be2d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -113,7 +113,7 @@ app.controller('createUserCtr', function ($scope, $http) {
$scope.generatePassword = function () {
$scope.generatedPasswordView = false;
$scope.password = randomPassword(12);
$scope.password = randomPassword(16);
};
$scope.usePassword = function () {
@ -342,7 +342,7 @@ app.controller('modifyUser', function ($scope, $http) {
$scope.generatePassword = function () {
$scope.generatedPasswordView = false;
$scope.password = randomPassword(12);
$scope.password = randomPassword(16);
};
$scope.usePassword = function () {
@ -1744,4 +1744,4 @@ app.controller('listTableUsers', function ($scope, $http) {
});
/* Java script code to list table users */
/* Java script code to list table users */