generate 16 digit strong password for email

This commit is contained in:
Istiak Ferdous
2020-04-29 17:42:22 +06:00
committed by GitHub
parent a9066ea0e1
commit 1b8ff0dbcc

View File

@@ -110,7 +110,7 @@ app.controller('createEmailAccount', function ($scope, $http) {
$scope.generatePassword = function () {
$scope.generatedPasswordView = false;
$scope.emailPassword = randomPassword(12);
$scope.emailPassword = randomPassword(16);
};
$scope.usePassword = function () {
@@ -465,7 +465,7 @@ app.controller('changeEmailPassword', function ($scope, $http) {
$scope.generatePassword = function () {
$scope.generatedPasswordView = false;
$scope.emailPassword = randomPassword(12);
$scope.emailPassword = randomPassword(16);
};
$scope.usePassword = function () {
@@ -1291,4 +1291,4 @@ app.controller('listEmails', function ($scope, $http) {
});
/* Java script code for List Emails Ends here */
/* Java script code for List Emails Ends here */